LongtermMemory-MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@LongtermMemory-MCPRemember that my preferred text editor is VS Code."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
LongtermMemory-MCP
A fully local MCP server that gives AI agents persistent, semantic long-term memory — without any cloud dependencies.
Inspired by mcp-mem0, but runs 100% on your machine:
Feature | mcp-mem0 | This project |
Storage | PostgreSQL / Supabase | SQLite (via sql.js WASM) |
Embeddings | OpenAI API | Local transformer (all-MiniLM-L6-v2) |
Vector search | Cloud vector DB | In-process cosine similarity |
LLM dependency | OpenAI / OpenRouter / Ollama | None |
Setup | Database + API keys |
|
Tools
Core
Tool | Description |
| Store text with auto-generated semantic embedding, tags, importance, and type |
| Find relevant memories using natural language queries (cosine similarity) |
| Modify an existing memory's content, metadata, tags, importance, or type |
| Remove a specific memory by ID |
| Wipe all memories (irreversible) |
| List all stored memories (paginated) |
| Get count and database location |
Search
Tool | Description |
| Filter memories by category ( |
| Find memories matching any of the provided tags |
| Find memories created within a specific date range (ISO format) |
Maintenance
Tool | Description |
| Manually trigger a database backup with JSON export |
Related MCP server: cell-mem
Quick Start
Claude Code Plugin (recommended)
Install via the Claude Code marketplace — this sets up both the MCP server and a companion skill that teaches Claude how to use memory effectively:
/plugin marketplace add MarcelRoozekrans/LongtermMemory-MCP
/plugin install longterm-memory@longterm-memory-marketplaceThis automatically:
Configures the MCP server (no manual JSON editing)
Installs the
long-term-memoryskill (Claude learns to recall context at session start, save insights after tasks, and deduplicate memories)
Use with npx (no install needed)
npx longterm-memory-mcpOr install globally
npm install -g longterm-memory-mcp
longterm-memory-mcpOr from source
git clone https://github.com/MarcelRoozekrans/LongtermMemory-MCP.git
cd LongtermMemory-MCP
npm install && npm run build
npm startConfiguration
Claude Code
If you installed via the plugin marketplace, the MCP server is already configured. For manual setup, add to your MCP settings (~/.claude/settings.json or project .claude/settings.json):
{
"mcpServers": {
"longterm-memory": {
"command": "npx",
"args": ["-y", "longterm-memory-mcp"]
}
}
}Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"longterm-memory": {
"command": "npx",
"args": ["-y", "longterm-memory-mcp"]
}
}
}Agent Instructions
The repo includes agent instructions that teach AI agents how to use memory effectively (automatic recall, save patterns, deduplication):
File | Purpose |
| Self-contained skill — auto-loaded by Claude Code plugin, can be referenced from any MCP client |
Database Location
By default, memories are stored in a shared, user-scoped location:
~/.longterm-memory-mcp/memories.dbThis means every project and every MCP client shares the same memory pool — you save a memory in one project and it's available everywhere.
Per-project database
To isolate memories for a specific project, set the MEMORY_DB_PATH environment variable:
{
"mcpServers": {
"longterm-memory": {
"command": "npx",
"args": ["-y", "longterm-memory-mcp"],
"env": {
"MEMORY_DB_PATH": "/path/to/project/memories.db"
}
}
}
}Memory Types
Each memory has a memory_type that determines how it's categorized and how quickly it decays:
Type | Description | Decay half-life |
| Default catch-all | 60 days |
| Verified information | 120 days |
| User/project preferences | 90 days |
| Conversation context | 45 days |
| Task-related notes | 30 days |
| Short-lived context | 10 days |
Tags & Importance
Tags: Categorize memories with string tags (e.g.
["auth", "backend"]). Search withsearch_by_tags.Importance (1–10): Controls how resistant a memory is to decay. Default is 5. Higher importance decays more slowly.
Protected tags: Memories tagged with
core,identity, orpinnedskip decay entirely.
Decay & Reinforcement
Memories decay over time to keep the store relevant:
Decay: Each memory type has a half-life (see table above). Importance decreases exponentially based on time since last access, with a floor that prevents full deletion.
Reinforcement: Every time a memory is accessed via search, its importance increases by +0.1 (up to a max of 10). Frequently accessed memories stay important.
Lazy evaluation: Decay is calculated on access, not on a timer — no background processes needed.
Content Deduplication
Memory content is hashed (SHA-256) on save. If identical content already exists, the save is rejected with a reference to the existing memory ID. This prevents duplicate entries automatically.
Backups
Backups are managed automatically and can also be triggered manually via the create_backup tool.
Auto-backup: Triggers every 24 hours or when the memory count reaches a multiple of 100.
Retention: The last 10 backups are kept; older ones are pruned automatically.
Format: Each backup is a timestamped directory containing the SQLite database and a JSON export of all memories.
Location:
~/.longterm-memory-mcp/backups/by default, or setMEMORY_BACKUP_PATH:
{
"mcpServers": {
"longterm-memory": {
"command": "npx",
"args": ["-y", "longterm-memory-mcp"],
"env": {
"MEMORY_BACKUP_PATH": "/path/to/backups"
}
}
}
}How It Works
Save: Text is embedded locally using
all-MiniLM-L6-v2(384-dim vectors) and stored in SQLite alongside the raw content, metadata, tags, importance, and type. Content is deduplicated via SHA-256 hash.Search: Your query is embedded with the same model, then compared against every stored memory using cosine similarity. Results above the threshold are returned ranked by relevance. Accessed memories are reinforced automatically.
Decay: Over time, unused memories lose importance based on their type's half-life. Protected and frequently accessed memories resist decay.
Persist: The SQLite database is a single file on disk. No background processes, no servers to maintain.
The embedding model (~30MB quantized) is downloaded once on first use and cached locally.
Architecture
src/ — MCP server source
index.ts — Entry point (stdio transport, DB/backup path resolution)
server.ts — MCP server factory + 11 tool definitions
memory-store.ts — SQLite storage + vector search + decay integration
embeddings.ts — Local embedding engine (Xenova/transformers)
decay.ts — DecayEngine (lazy decay, reinforcement, protected tags)
backup.ts — BackupManager (auto-backup, JSON export, pruning)
types.ts — TypeScript interfaces (Memory, Embedder, config types)
skills/ — Claude Code plugin skill
long-term-memory/SKILL.md — Self-contained agent instructions + skill
.claude-plugin/ — Plugin & marketplace metadata
plugin.json — Plugin manifest
marketplace.json — Marketplace manifest
.mcp.json — Auto-configures MCP server on plugin install
.vscode/mcp.json — VS Code MCP server configBenchmarks
Run with npm run bench. Results from an in-memory store using mock embeddings (isolates store/SQLite performance from model latency):
Cosine Similarity
Operation | Throughput | Notes |
Single computation (384-dim) | ~4.2M ops/s | Matches real embedding dimensions |
128 dimensions | ~8.6M ops/s | |
768 dimensions | ~2.4M ops/s | |
1536 dimensions | ~1.3M ops/s | Scales linearly with dimensions |
Memory Store Operations
Operation | Throughput | Notes |
Save (single) | ~1,120 ops/s | Includes embed + SQLite insert + dedup check |
Save 100 batch | ~18 ops/s | ~55ms per batch of 100 |
Save 1000 batch | ~0.3 ops/s | ~3.1s per batch of 1000 |
Update (content, re-embed) | ~155 ops/s | |
Update (metadata only) | ~344 ops/s | 2.2x faster than content update |
Delete | ~469 ops/s |
Search (semantic, at scale)
Store Size | Operation | Notes |
10 memories | search (limit=5) | Full scan + cosine similarity per memory |
100 memories | search (limit=5) | |
500 memories | search (limit=5) | |
1000 memories | search (limit=5) | Linear scan — scales with store size |
Decay Engine
Operation | Throughput |
Single decay computation | ~21M ops/s |
Single reinforcement | ~25.7M ops/s |
shouldProtect (tag check) | ~22M ops/s |
Development
npm install # Install dependencies
npm run build # Compile TypeScript
npm test # Run all 96 tests
npm run bench # Run benchmarks
npm run test:watch # Watch mode
npm run test:coverage # Coverage reportContributing
This project uses Conventional Commits and semantic-release for automated versioning.
Commit message format
<type>(<optional scope>): <description>
[optional body]
[optional footer(s)]Type | Purpose | Version bump |
| New feature | Minor (0.x.0) |
| Bug fix | Patch (0.0.x) |
| Documentation only | No release |
| Formatting, whitespace | No release |
| Code restructuring | No release |
| Adding/updating tests | No release |
| Maintenance, deps | No release |
| CI/CD changes | No release |
Breaking changes: Add ! after the type (e.g., feat!: remove deprecated API) or include a BREAKING CHANGE: footer. This triggers a major version bump.
Examples
git commit -m "feat: add memory tagging support"
git commit -m "fix: handle empty search query gracefully"
git commit -m "feat!: change default database location"
git commit -m "docs: update configuration examples"Commit messages are validated locally via commitlint + husky git hooks. Non-conforming messages will be rejected.
Releases
Releases are fully automated. When commits are pushed to main:
semantic-release analyzes commit messages
Determines the next version (major / minor / patch)
Generates release notes from commits
Updates
CHANGELOG.mdPublishes to npm
Creates a GitHub Release
No manual version bumps or tags needed.
Dependency Updates
Dependencies are managed automatically by Renovate. Patch and minor devDependency updates are auto-merged after CI passes. Major updates create PRs for manual review.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MarcelRoozekrans/LongtermMemory-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server