recall
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., "@recallsearch memory for database schema decisions"
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.
recall
A zero-dependency MCP server for cross-session memory recall in Claude Code. It exposes lexical search / list / get over your Claude memory files so a new session can find what past sessions decided and learned, without re-explaining.
No native deps, no SDK: pure Node stdlib implementing the MCP stdio JSON-RPC protocol by hand. It installs and runs anywhere Node 18+ exists.
Why
Context is fragile across sessions; power users build their own (Chronicle, Recall-with-Redis) to recall files, decisions, and chats. Memory consolidation work (RecMem, agentmemory) shows the value of distilling recurring knowledge rather than re-loading everything. recall is the minimal, dependency-free first step: make the memory you already write searchable from any session.
Related MCP server: mcp-server-claude
Tools
recall_search(query, limit=5): ranked lexical search over memory files, returns name, score, snippet, file.recall_list(): all memory entries (name, description, file).recall_get(name): full content of one entry by frontmatter name or filename.
Read-only by design in v0.1. It never writes or deletes.
Install (Claude Code)
Add to your MCP config (~/.claude/settings.json, or wherever you manage MCP servers):
"mcpServers": {
"recall": {
"command": "node",
"args": ["C:\\Users\\<you>\\recall\\server.js"],
"env": { "RECALL_MEMORY_DIR": "" }
}
}RECALL_MEMORY_DIR(optional): point at a specific memory folder. If unset, recall scans every~/.claude/projects/<slug>/memory/directory.As a plugin,
.claude-plugin/plugin.jsonalready declares the server via${CLAUDE_PLUGIN_ROOT}/server.js.
Restart Claude Code; the recall_* tools appear.
Verify it yourself (no network needed)
printf '%s\n%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{}}}' \
'{"jsonrpc":"2.0","id":2,"method":"tools/list"}' | node server.jsYou should get an initialize result with serverInfo and a tools/list with three tools.
Limits / roadmap
v0.1 is lexical (term-frequency). It does not do semantic/embedding search yet.
v0.2 (planned): optional embeddings + hybrid retrieval (e.g. sqlite-vec + BM25/FTS5) behind a flag, plus confidence/lifecycle tags. Those add native deps; v0.1 stays dependency-free on purpose.
License
MIT
Part of the claude-code-skills collection: a one-line Claude Code plugin marketplace of focused skills, plugins, and MCP servers.
/plugin marketplace add Zavelinski/claude-code-skillsMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceAn MCP server that gives Claude Code cross-session memory persisted to a plain .claude-memory.md file in your repo.Last updatedMIT
- Alicense-qualityCmaintenanceMCP Memory Server for Claude Code that provides persistent context across sessions using semantic search (RAG).Last updatedApache 2.0
- Flicense-qualityDmaintenanceA personal memory MCP server for Claude Code that stores and retrieves memories via natural language, supporting text, images, files, and secrets with vector search.Last updated
- Flicense-qualityDmaintenanceA lightweight MCP memory server built on SQLite + FTS5, providing cross-session long-term memory for Claude Code.Last updated
Related MCP Connectors
Cloud-hosted MCP server for durable AI memory
Person-owned, portable AI memory as a remote MCP server, readable and writable by any MCP client.
One memory, every AI: Claude, ChatGPT, Perplexity, Gemini, Cursor, OpenClaw, Hermes, any MCP client.
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/Zavelinski/recall'
If you have feedback or need assistance with the MCP directory API, please join our Discord server