mcpserver.lol
registry/claudex
Connection check local install

claudex

Persistent memory + FTS5 search MCP server for Claude Code conversation history.

Tools 10
GitHub stars 91
Installs / wk 94
Licence MIT
Transport stdio
Last checked never

Tools & capabilities

10 tools

Read from the published package source — this server runs locally, so there is no endpoint to query. Names are taken from the code, not observed at runtime, and descriptions are often absent.

delete_memory from source
Delete a specific memory by namespace, type, and key. Use when a memory is outdated or incorrect.
get_project_context from source
Get a condensed context snapshot for the current project. Call this at the START of every session to load project memory: recent sessions, favorited sessions, and project stats. Th…
get_session from source
Get the full conversation from a session. Defaults to the current project. Use this when you need to read the actual messages from a past session — e.g., to recall implementation d…
get_session_summary from source
Get a quick summary of a session — title, message count, dates, tags, favorites, and token stats. Defaults to the current project. Cheaper than get_session when you only need metad…
list_memories from source
List all stored memories for the current project with stats. Shows namespace, type, key, priority. Useful for understanding what knowledge is stored.
list_projects from source
List all Claude Code projects on this machine. Shows which project is currently active.
list_sessions from source
List sessions for a project. Defaults to the current project. Pass projectId to target a different project. Use this when the user asks about previous conversations, or when you ne…
recall_memory from source
Recall stored memories for the current project. Returns memories sorted by priority and recency. Use this to retrieve codebase knowledge, conventions, decisions, and context from p…
search_conversations from source
Search conversations using full-text search. Defaults to the current project. Set allProjects=true to search across all projects, or pass a specific projectId. Use this when the us…
store_memory from source
Store a structured memory for the current project. Use this when you discover important codebase patterns, conventions, decisions, or architecture details that should persist acros…