CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Mnemon Mcp

nikitacometa/mnemon-mcp
3authSTDIOregistry active
Summary

Gives Claude persistent memory across sessions using a local SQLite database with FTS5 search and optional vector similarity. Organizes memories into four layers (episodic, semantic, procedural, resource) with different decay rates and access patterns. Ten tools handle adding, searching, updating, and versioning facts. Facts form superseding chains instead of being overwritten, so you can trace how knowledge evolved. Search combines BM25 ranking with recency and importance weighting, plus hybrid mode when you bring your own embeddings via OpenAI or Ollama. Includes session tracking, health diagnostics, and export to JSON or Markdown. Reach for this when you want your agent to remember user preferences, project conventions, or past conversations without sending anything to the cloud.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

mnemon-mcp

CI npm version Node.js License: MIT

Persistent layered memory for AI agents. Local-first. Zero-cloud. Single SQLite file.

Landing Page · npm · GitHub

Your AI agent forgets everything after each session. Mnemon fixes that.

It gives any MCP-compatible client — OpenClaw, Claude Code, Cursor, Windsurf, or your own — a structured long-term memory backed by a single SQLite database on your machine. No API keys, no cloud, no telemetry. Just npm install and your agent remembers.

mnemon-mcp demo — memory_add, memory_search, memory_inspect, memory_update


Why Layered Memory?

Flat key-value stores treat "what happened yesterday" the same as "never commit without tests." That's wrong — different kinds of knowledge have different lifetimes and access patterns.

Mnemon organizes memories into four layers:

LayerWhat it storesHow it's accessedLifetime
EpisodicEvents, sessions, journal entriesBy date or periodDecays (30-day half-life)
SemanticFacts, preferences, relationshipsBy topic or entityStable
ProceduralRules, workflows, conventionsLoaded at startupRarely changes
ResourceReference material, book notesOn demandDecays slowly (90 days)

A journal entry from last Tuesday and a coding rule that never changes live in different layers — because they should.

Quick Start

Install

npm install -g mnemon-mcp

Or from source:

git clone https://github.com/nikitacometa/mnemon-mcp.git
cd mnemon-mcp && npm install && npm run build

Configure Your MCP Client

OpenClaw
openclaw mcp register mnemon-mcp --command="mnemon-mcp"

Or add to ~/.openclaw/mcp_config.json:

{
  "mnemon-mcp": {
    "command": "mnemon-mcp"
  }
}
Claude Code

Add to ~/.claude/mcp.json:

{
  "mcpServers": {
    "mnemon-mcp": {
      "command": "mnemon-mcp"
    }
  }
}
Cursor / Windsurf / Other MCP clients

Add to your client's MCP config:

{
  "mcpServers": {
    "mnemon-mcp": {
      "command": "mnemon-mcp"
    }
  }
}
Running from source?

Use the full path to the compiled entry point:

{
  "mnemon-mcp": {
    "command": "node",
    "args": ["/absolute/path/to/mnemon-mcp/dist/index.js"]
  }
}

Verify

echo '{"jsonrpc":"2.0","method":"tools/list","id":1}' | mnemon-mcp

You should see 10 tools in the response. The database (~/.mnemon-mcp/memory.db) is created automatically on first run.

That's it. Your agent now has persistent memory.

What It Can Do

10 MCP Tools

ToolWhat it does
memory_addStore a memory with layer, entity, confidence, importance, and optional TTL
memory_searchFull-text or exact search with filters by layer, entity, date, scope, confidence
memory_updateUpdate in-place or create a versioned replacement (superseding chain)
memory_deleteDelete a memory; re-activates its predecessor if any
memory_inspectGet layer statistics or trace a single memory's version history
memory_exportExport to JSON, Markdown, or Claude-md format with filters
memory_healthRun diagnostics: expired entries, orphaned chains, stale memories; optionally GC
memory_session_startStart an agent session — returns session ID for grouping memories
memory_session_endEnd a session with optional summary; returns duration and memory count
memory_session_listList sessions with filters by client, project, or active status

MCP Resources & Prompts

Resources — live data your agent can read:

URIReturns
memory://statsAggregate stats per layer
memory://recentMemories created/updated in last 24h
memory://layer/{layer}All active memories in a layer
memory://entity/{name}All active memories about an entity

Prompts — pre-built workflows:

PromptPurpose
recall"Tell me everything you know about X"
context-loadLoad relevant context before starting a task
journalCreate a structured journal entry

Search

Four modes, all supporting layer / entity / scope / date / confidence filters:

FTS mode (default without embeddings) — tokenized full-text search with BM25 ranking. Multi-word queries use AND; if too few results, OR supplements with a score penalty. Progressive AND relaxation tries top-3 most specific terms before falling back to full OR.

Hybrid mode (default when embeddings configured) — combines FTS5 + vector search via Reciprocal Rank Fusion. Detects quoted entities in queries (e.g., 'Essentialism') and runs weighted sub-queries for cross-reference retrieval.

Vector mode — pure cosine similarity search over embeddings.

Exact mode — LIKE substring match for precise phrase lookups.

Scores: bm25 × (0.3 + 0.7 × importance) × decay(layer) × recency

Recency boost: 1 / (1 + daysSince / 365) — gently rewards recently created memories without penalizing old ones.

Stemming

Snowball stemmer applied at both index time and query time for English and Russian. This means "running" matches "runs", and "книги" matches "книга". Stop words are filtered from queries to improve precision.

Fact Versioning

Knowledge evolves. Mnemon doesn't delete old facts — it chains them:

v1: "Team uses React 17"  →  superseded_by: v2
v2: "Team uses React 19"  →  supersedes: v1 (active)

Search returns only the latest version. memory_inspect with include_history: true reveals the full chain. memory_delete re-activates the predecessor — nothing is lost.

Vector Search (Optional, BYOK)

Enable semantic similarity search by providing your own embedding API:

# OpenAI
MNEMON_EMBEDDING_PROVIDER=openai MNEMON_EMBEDDING_API_KEY=sk-... mnemon-mcp

# Ollama (local, free)
MNEMON_EMBEDDING_PROVIDER=ollama mnemon-mcp

This unlocks two additional search modes:

  • mode: "vector" — pure cosine similarity search
  • mode: "hybrid" — FTS5 + vector combined via Reciprocal Rank Fusion

Requires sqlite-vec (installed as optional dependency). New memories are embedded on add; existing ones can be backfilled.

Embedding configuration
VariableDefaultDescription
MNEMON_EMBEDDING_PROVIDER—openai or ollama (unset = disabled)
MNEMON_EMBEDDING_API_KEY—API key (required for OpenAI)
MNEMON_EMBEDDING_MODELtext-embedding-3-small / nomic-embed-textModel name
MNEMON_EMBEDDING_DIMENSIONS1024 / 768Vector dimensions
MNEMON_OLLAMA_URLhttp://localhost:11434Ollama endpoint

Importing a Knowledge Base

Got a folder of Markdown files? Import them in bulk:

cp config.example.json ~/.mnemon-mcp/config.json   # edit this first
npm run import:kb -- --kb-path /path/to/your/kb     # incremental (skips unchanged files)

The config maps glob patterns to memory layers:

{
  "owner_name": "your-name",
  "extra_stop_words": [],
  "mappings": [
    {
      "glob": "journal/*.md",
      "layer": "episodic",
      "entity_type": "user",
      "entity_name": "$owner",
      "importance": 0.6,
      "split": "h2"
    },
    {
      "glob": "people/*.md",
      "layer": "semantic",
      "entity_type": "person",
      "entity_name": "from-heading",
      "importance": 0.8,
      "split": "h3"
    }
  ]
}

Config Fields

FieldTypeDescription
owner_namestringYour name — used for $owner substitution in entity_name
extra_stop_wordsstring[]Words to filter from FTS queries (e.g., your name forms)
globstringFile pattern to match
layerstringTarget memory layer
entity_typestringuser / person / project / concept / file / rule / tool
entity_namestringLiteral name, "$owner", or "from-heading" (extract from H2/H3)
splitstring"whole" (one memory per file), "h2", or "h3" (split on headings)
importancenumber0.0–1.0, affects search ranking
confidencenumber0.0–1.0, filterable in search
scopestringOptional namespace

HTTP Transport

For remote or multi-client setups:

MNEMON_AUTH_TOKEN=your-secret MNEMON_PORT=3000 npm run start:http
EndpointDescription
POST /mcpMCP JSON-RPC (Bearer auth if token set)
GET /health{"status":"ok","version":"..."}

Rate limiting (100 req/min/IP by default), CORS headers, 1MB body limit, timing-safe auth, graceful shutdown on SIGTERM.

Configuration Reference

VariableDefaultDescription
MNEMON_DB_PATH~/.mnemon-mcp/memory.dbDatabase path
MNEMON_KB_PATH.Knowledge base root for import
MNEMON_CONFIG_PATH~/.mnemon-mcp/config.jsonImport config path
MNEMON_AUTH_TOKEN—Bearer token for HTTP transport
MNEMON_PORT3000HTTP transport port
MNEMON_CORS_ORIGIN*CORS Access-Control-Allow-Origin
MNEMON_RATE_LIMIT100Max requests per minute per IP (0 = off)

Tool Reference

memory_add — full parameter list
ParameterTypeRequiredDescription
contentstringYesMemory text (max 100K chars)
layerstringYesepisodic / semantic / procedural / resource
titlestringNoShort title (max 500 chars)
entity_typestringNouser / project / person / concept / file / rule / tool
entity_namestringNoEntity name for filtering
confidencenumberNo0.0–1.0 (default 0.8)
importancenumberNo0.0–1.0 (default 0.5)
scopestringNoNamespace (default global)
source_filestringNoSource file path — triggers auto-supersede of matching entries
ttl_daysnumberNoAuto-expire after N days
valid_from / valid_untilstringNoTemporal fact window (ISO 8601)
memory_search — full parameter list
ParameterTypeRequiredDescription
querystringYesSearch text
modestringNofts (default), exact, vector, hybrid
layersstring[]NoFilter by layers
entity_namestringNoFilter by entity (supports aliases)
scopestringNoFilter by scope
date_from / date_tostringNoDate range (ISO 8601)
as_ofstringNoTemporal fact filter — facts valid at this date
min_confidencenumberNoMinimum confidence
min_importancenumberNoMinimum importance
limitnumberNoMax results (default 10, max 100)
offsetnumberNoPagination offset
memory_update — full parameter list
ParameterTypeRequiredDescription
idstringYesMemory ID
contentstringNoNew content
titlestringNoNew title
confidencenumberNoNew confidence
importancenumberNoNew importance
supersedebooleanNotrue = versioned replacement; false (default) = in-place
new_contentstringNoContent for superseding entry
memory_delete
ParameterTypeRequiredDescription
idstringYesMemory ID. Re-activates predecessor if part of a superseding chain
memory_inspect
ParameterTypeRequiredDescription
idstringNoMemory ID (omit for aggregate stats)
layerstringNoFilter stats by layer
entity_namestringNoFilter stats by entity
include_historybooleanNoShow superseding chain
memory_export
ParameterTypeRequiredDescription
formatstringYesjson / markdown / claude-md
layersstring[]NoFilter by layers
scopestringNoFilter by scope
date_from / date_tostringNoDate range
limitnumberNoMax entries (default all, max 10K)
memory_health
ParameterTypeRequiredDescription
cleanupbooleanNotrue = garbage-collect expired entries (default: report only)

Returns: status (healthy / warning / degraded), per-layer stats, expired entries, orphaned chains, stale/low-confidence counts, cleaned count when cleanup=true.

memory_session_start
ParameterTypeRequiredDescription
clientstringYesClient identifier (e.g. claude-code, cursor, api)
projectstringNoProject scope for this session
metaobjectNoAdditional session metadata

Returns: id (session UUID), started_at (ISO 8601).

memory_session_end
ParameterTypeRequiredDescription
idstringYesSession ID to end
summarystringNoSummary of what was accomplished (max 10K chars)

Returns: id, ended_at, duration_minutes, memories_count.

memory_session_list
ParameterTypeRequiredDescription
limitnumberNoMax sessions (default 20, max 100)
clientstringNoFilter by client
projectstringNoFilter by project
active_onlybooleanNoOnly return sessions that haven't ended (default false)

Returns: array of sessions with id, client, project, started_at, ended_at, summary, memories_count.

How It Compares

mnemon-mcpmem0basic-memoryEngramAnthropic KG
ArchitectureSQLite FTS5 + vectorCloud API + QdrantMarkdown + vectorSQLite FTS5JSON file
Memory structure4 typed layersFlatFlatFlat + sessionsGraph
SearchFTS5 + hybrid RRFSemanticHybridFTS5Exact
Fact versioningSuperseding chainsPartialNoNoNo
StemmingEN + RU (Snowball)EN onlyEN onlyNoneNone
EmbeddingsBYOK (OpenAI / Ollama)Built-inFastEmbedNoneNone
Dependencies0 requiredQdrant, Neo4jPython 3.12Go binaryNone
Cloud requiredNoYesNoNoNo
CostFree$19–249/moFreeFreeFree
Setupnpm install -gDocker + API keyspip + depsGo installBuilt-in
LicenseMITApache 2.0AGPLMITMIT

Development

npm run dev        # run via tsx (no build step)
npm run build      # TypeScript → dist/
npm test           # vitest (229 tests)
npm run bench      # performance benchmarks
npm run db:backup  # backup database

Stack: TypeScript 5.9 (strict mode), better-sqlite3, @modelcontextprotocol/sdk, Snowball stemmer, Zod, vitest.

See CONTRIBUTING.md for code guidelines.

Design Principles

  • Air-gapped — zero network calls, zero telemetry. Your memories stay on your machine.
  • Single file — one SQLite database, zero ops, instant backup via file copy.
  • Deterministic search — FTS5, not embeddings, is the default. Interpretable, reproducible, no GPU needed.
  • Structured over flat — layers encode access patterns; superseding chains encode time.
  • Minimal — 4 production dependencies. Works everywhere Node runs.

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

MNEMON_DB_PATH

Path to SQLite database file (default: ~/.mnemon-mcp/memory.db)

MNEMON_EMBEDDING_PROVIDER

Embedding provider for vector search: 'openai' or 'ollama' (default: disabled)

MNEMON_EMBEDDING_API_KEYsecret

API key for embedding provider (required for OpenAI)

Categories
Databases
Registryactive
Packagemnemon-mcp
TransportSTDIO
AuthRequired
UpdatedMar 16, 2026
View on GitHub

Related Databases MCP Servers

View all →
Postgres

ai.waystation/postgres

Connect to your PostgreSQL database to query data and schemas.
54
Read Only Local Postgres Mcp Server

hovecapital/read-only-local-postgres-mcp-server

MCP server for read-only PostgreSQL database queries in Claude Desktop
2
Database Mcp

cocaxcode/database-mcp

MCP server for database connectivity. Multi-DB (PostgreSQL, MySQL, SQLite), 19 tools.
1
Mcp Mysql

io.github.infoinlet-marketplace/mcp-mysql

Read-only MySQL/MariaDB for AI agents — query, list/describe tables, health. SQL-guarded.
Database Admin

io.github.cybeleri/database-admin

Database admin MCP: schema inspection, query optimization for PostgreSQL and MySQL
Postgres Secured (Aegis Zero-Trust)

io.github.yash-0620/postgres-mcp-secured

Enterprise PostgreSQL MCP secured by Aegis Zero-Trust to block unauthorized SQL injections.