mcp-server-claude
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., "@mcp-server-claudeRemember that the deployment target is production"
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.
mcp-server-claude
MCP Memory Server for Claude Code — persistent context across sessions using semantic search (RAG).
Problem
Claude Code compacts conversation history when it exceeds the context window (~200k tokens). This causes loss of operational context between sessions. A database alone doesn't fix this — the solution is selective context retrieval (RAG), not full history loading.
Related MCP server: claudecode-infinite-memory
Solution
A local MCP server that:
Saves key fragments from each session with embeddings
On new sessions, retrieves only the top-K semantically relevant fragments (~5-10k tokens)
Provides structured project context (decisions, status, todos) on demand
Architecture
Claude Code CLI
│ MCP Protocol (JSON-RPC 2.0 / stdio)
▼
MCP Memory Server (FastMCP)
├── Tools: remember, recall, get_project_context, list_sessions
├── ChromaDB ← vector store (semantic search)
└── SQLite ← session metadataQuick Start
git clone <repo>
cd mcp-server-claude
pip install -r requirements.txt
cp .env.example .env
# edit .env — set MEMORY_DB_PATH to a directory outside the repo
# Register with Claude Code:
# Add the contents of mcp_config.example.json to ~/.claude/settings.jsonEnvironment
Designed for Zurich Insurance GenAI Platform (LiteLLM proxy UAT, WSL2 Ubuntu 24).
CLAUDE_CODE_DISABLE_PROMPT_CACHING=1— proxy doesn't support caching; this server compensatesAll embeddings run locally (sentence-transformers) — no external calls
Documentation
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Private persistent memory for Claude, ChatGPT & Gemini via MCP - semantic search, zero-code setup.
- mcpOAuthai.butlerbrain
Persistent memory for AI assistants. Save once; recall from Claude, ChatGPT, or any MCP client.
Persistent AI memory shared across Claude, ChatGPT, coding agents, and compatible MCP clients.
Persistent memory for AI agents across Claude, ChatGPT and any MCP client.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenancePersistent memory MCP server for Claude Code that captures and recalls project context across sessions, eliminating the need to re-explain architecture and decisions daily.1371MIT
- FlicenseNot gradedqualityDmaintenanceA lightweight MCP memory server built on SQLite + FTS5, providing cross-session long-term memory for Claude Code.-
- AlicenseNot gradedqualityDmaintenanceA simple memory storage server for Claude using the Model Context Protocol (MCP), enabling Claude to store and retrieve text memories across conversations.11MIT
- AlicenseAqualityCmaintenanceA zero-dependency MCP server for cross-session memory recall in Claude Code. Provides lexical search, listing, and retrieval of past session memories to avoid re-explaining context.316MIT