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 toolsRead 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. 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 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. This is your primary memory tool — use it before doing any work.
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 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 details, decisions made, or code that was written.
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… 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 metadata, not full messages.
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 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 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… 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 need to find a specific session.
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… 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 previous sessions.
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… 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 user asks
store_memory
from source