Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ—„οΈ Databases
  3. Memharness
Memharness logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 9:09:42 PM

Memharness

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository6 GitHub StarsTotal stargazers on GitHub for the source repository (6 stars).

Bi-temporal, provenance-carrying long-term memory for AI agents, in one SQLite file.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β€” we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "memharness": {
      "command": "npx",
      "args": [
        "-y",
        "@memharness/mcp"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ—„οΈ More in Databases

Documentation Overview

memharness

A bi-temporal, provenance-carrying memory primitive for AI agents. One SQLite file. No LLM or network calls in the storage layer. Exposed to any agent via MCP.

Most agent memory is a bag of strings. memharness stores facts, and combines three semantics that incumbents tend to split apart:

  1. Bi-temporal: every fact records when it became true in the world (valid_from/valid_to) separately from when the agent learned it (tx_at). So you can ask: "what did you believe on March 1st?"
  2. Supersession, never deletion: corrections close the old fact and link it to its successor. "What did you think before I corrected you?" has an answer.
  3. Provenance per fact: every memory cites who said it, where, and when. "Why do you believe that?" has an answer. So does "forget everything from that session."

The storage layer is deterministic: no LLM, no network, no background daemon. It's plain SQLite, so you can open the file with any client.

An agent learns a deploy target, the user corrects it weeks later, and recall / as_of / why / diff explain what was believed when.

Run it yourself: cd examples && npm install && npm run demo

When to use this (and when not to)

memharness is not a magic accuracy upgrade, and it is honest about that. If your agent's memory is small and static and comfortably fits the context window, a CLAUDE.md file (or just stuffing the history into the prompt) is simpler, and on short histories full context will match or beat any external memory system.

Reach for memharness when:

  • History outgrows the window: months of facts, many subjects, more than you want to (or can) paste into every prompt.
  • You need an audit trail: "what did the agent believe when it made this decision?" (as_of), "what changed since Monday?" (diff), "why does it believe this?" (why). These are queries a bag of strings cannot answer.
  • You need provenance-scoped deletion: "forget everything from that session/file/source" in one call (GDPR-shaped, not a string search).
  • Beliefs change over time: corrections should supersede, not silently overwrite, so old reasoning stays explainable.

How it compares

Honest, and pointed at the thing memharness actually does differently: it is a deterministic, auditable storage layer rather than an extraction service.

StorageLLM calls to writeas_of / diff / whyEmbeddable / self-host
memharnessone SQLite filenoneyes: bi-temporal + provenanceyes, it's a library
mem0hosted / OSS serviceyes (extraction pipeline)partial / nopartial
Zep / Graphitihosted graphyes (LLM ingestion)bi-temporal, but LLM-builtpartial
Letta / MemGPTagent framework + DByes (agent-managed)noyes
Anthropic memory toolclient-side filesmodel edits filesno (model picks)yes
plain CLAUDE.md / filestext filesnonenoyes

Where the others win, plainly: mem0 and Zep do automatic fact extraction from raw conversation, which memharness deliberately does not (the write path stays model-free; a client or skill decides what is worth remembering). Plain CLAUDE.md needs no install at all. memharness earns its place when you need the temporal and provenance queries the others don't offer.

Packages

PackageWhat it is
@memharness/coreTypeScript library: schema, migrations, write path, recall ranking. No model, no network.
@memharness/mcpMCP server (stdio) exposing the seven tools to any MCP client.
@memharness/embedOptional. A local embedding model for hybrid (semantic) recall. Not installed by default.

Quick start (MCP)

The default install is small (SQLite plus the MCP SDK); the embedding model is opt-in, see Hybrid recall.

Claude Code:

Terminal
claude mcp add memharness -- npx -y @memharness/mcp

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json) and Cursor (~/.cursor/mcp.json) use the same JSON shape:

config.json
{
  "mcpServers": {
    "memharness": { "command": "npx", "args": ["-y", "@memharness/mcp"] }
  }
}

Codex (~/.codex/config.toml) uses TOML, not JSON:

toml
[mcp_servers.memharness]
command = "npx"
args = ["-y", "@memharness/mcp"]

The database lives at ~/.memharness/memory.db (override with MEMHARNESS_DB; XDG_DATA_HOME is honored on Linux). Nothing else is written unless you turn on the optional debug log.

First run

  1. Add the server with one of the commands above, then restart your client so it picks up the new MCP server.
  2. In a conversation, hand the agent a durable fact, e.g. "remember that I deploy this project with Fly.io." It calls remember.
  3. Later (or in a fresh session) ask "what do you know about how I deploy?" It calls recall and answers from memory. Correct it and it calls revise; the old belief becomes history, queryable with as_of / why / diff.

No API key, no signup, no network. The first remember creates the SQLite file and that's the whole setup. To watch the tools work end to end without an agent, run the demo: cd examples && npm install && npm run demo.

Optional: make recall automatic

By default the agent decides when to call recall. To push relevant memory in at the start of every session instead (more reliable than hoping the model remembers to look), add a Claude Code SessionStart hook that runs the bundled memharness-context tool, whose stdout is injected into context:

config.json
{
  "hooks": {
    "SessionStart": [
      { "hooks": [ { "type": "command",
        "command": "npx -y -p @memharness/mcp memharness-context --subject user" } ] }
    ]
  }
}

It prints a compact dump of the most relevant current beliefs (and exits quietly if there's nothing yet), so the agent starts each session already knowing the durable facts. Pass --subject more than once to inject several entities.

The seven tools

ToolWhat it doesThe thesis it tests
rememberstore an atomic fact with confidence + provenancefacts > blobs
recallranked current beliefs; as_of returns beliefs at a past instantbi-temporal
revisesupersede a belief, keep historysupersession > deletion
diffwhat changed since a date (learned/revised/retracted)the audit demo
whyprovenance + full revision chain for a facttrust / audit
forgettombstone by id or by source (provenance-based deletion)GDPR-shaped
statscounts, subjects, schema versionβ€”

Library use

server.ts
import { Memharness } from "@memharness/core";

const mem = Memharness.open(); // ~/.memharness/memory.db

// Learn something now, then learn it was actually true earlier.
const { id } = mem.remember({
  subject: "user",
  fact: "lives in Osaka",
  sourceRef: "session-2026-06-09",
});
mem.revise({ oldFactId: id, newFact: "lives in Tokyo", validFrom: "2026-05-01" });

mem.recall({ query: "lives" }).facts[0].fact;   // "lives in Tokyo" (current belief)
mem.diff({ since: "2026-06-01" });               // { learned, revised, retracted }
mem.why(id);                                     // { fact, ancestors, descendants }

recall returns a RecallResult ({ facts: ScoredFact[]; asOf; truncated; usedFallback }), not a bare string. asOf time-travels: mem.recall({ query: "lives", asOf: "2026-04-15" }) returns what was believed as held on that date. That honors transaction time, so a fact learned today is not visible to a query about the past.

Recall ranking is reciprocal-rank fusion over FTS5 BM25 (plus a vector rank when hybrid recall is enabled), times confidence, times recency decay (90-day half-life, configurable), scored in SQL. An optional maxTokens budget caps output for context windows. A substring fallback catches partial words and typos, in both FTS-only and hybrid modes.

Optional: hybrid recall

By default, recall is FTS5 keyword search plus recency/confidence ranking: no model, fully offline. Hybrid recall adds a semantic leg via a local embedding model (BGE-small, ~130MB, downloaded once from the HuggingFace hub then fully offline: no API key, no per-query network). Enable it in two steps:

  1. Install the optional embedding package alongside the server. With npx:

    Terminal
    npx -y -p @memharness/mcp -p @memharness/embed memharness-mcp
    

    (or npm i -g @memharness/embed for a global install).

  2. Set MEMHARNESS_HYBRID=1 in the server's environment.

The server then keeps stored facts embedded automatically: facts you remember become semantically searchable on the next recall, with no separate backfill step. The first hybrid recall prints download progress to stderr while the model loads. If the package isn't installed, the server says so and stays FTS-only; it never fails closed.

At the library level, recall is embedding-provider-agnostic: pass your own query vector to recall({ queryVector }) and attach document vectors with setEmbedding(...), from any model you like.

A worked example

Two sessions, weeks apart. The agent learns a preference, the user later corrects it, and a downstream question asks what the agent believed at the time:

server.ts
// June 9: the agent learns a deploy target and acts on it.
const { id } = mem.remember({
  subject: "project:acme",
  fact: "deploys via Heroku",
  sourceRef: "session-2026-06-09",
});

// June 16: turns out the team moved to Fly back on June 1.
mem.revise({
  oldFactId: id,
  newFact: "deploys via Fly.io",
  validFrom: "2026-06-01",
  sourceRef: "session-2026-06-16",
});

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Databases View all alternatives
  • Memwright logoMemwright

    Embedded memory for AI agents with SQLite FTS5, pgvector, and Neo4j graph search.

    πŸ—„οΈ Databases0 views
    Compare vs Memwright β†’
  • Titen Memory logoTiten Memory

    Evidence-grounded agent memory with mandatory provenance, on local SQLite or Cloudflare D1

    πŸ—„οΈ Databases0 views
    Compare vs Titen Memory β†’
  • Memory Kernel logoMemory Kernel

    Local-first memory for AI agents: SQLite FTS5, deterministic recall, no vector DB, no cloud.

    πŸ—„οΈ Databases1 views
    Compare vs Memory Kernel β†’
  • Leteo logoLeteo

    Persistent memory for AI coding agents: one Rust binary, one local SQLite database.

    πŸ—„οΈ Databases0 views
    Compare vs Leteo β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Memharness

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "memharness": { "command": "npx", "args": ["-y", "memharness"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMemharness AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/memharness?style=directory)](https://allmcps.com/mcp/memharness)
HTML Embed
<a href="https://allmcps.com/mcp/memharness"><img src="https://allmcps.com/api/badge/memharness?style=directory" alt="Memharness on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ—„οΈDatabases
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars6
GitHub Star CountTotal stargazers on GitHub representing community popularity (6 stars).
37Quality signal: Fair Β· 37/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity2/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge and attach your website β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ—„οΈ Databases β†’Best MCP servers for Databases β†’Alternatives to Memharness β†’Install in Claude DesktopInstall in CursorInstall in VS Code