A Model Context Protocol (MCP) server providing **human-like memory dynamics** for AI assistants. Memories naturally fade over time unless reinforced
Most knowledge and memory work still happens through a UI a human drives. Mnemex MCP server moves it into the conversation instead. A Model Context Protocol (MCP) server providing human-like memory dynamics for AI assistants. Memories naturally fade over time unless reinforced through use, mimicking the [Ebbinghaus forgetting.
The server publishes 14 tools. What each one is for:
save_memory — Save new memory with tags, entities (auto-enrichment in v0.6.0+)search_memory — Search with filters and scoring (includes review candidates)search_unified — Unified search across STM + LTMtouch_memory — Reinforce memory (boost strength)observe_memory_usage — Record memory usage for natural spaced repetitionanalyze_message — ✨ NEW v0.6.0 - Detect memory-worthy content, suggest entities/strengthanalyze_for_recall — ✨ NEW v0.6.0 - Detect recall intent, suggest search queriespromote_memory — Move to long-term storagecluster_memories — Find similar memoriesconsolidate_memories — Merge similar memories (algorithmic)read_graph — Get entire knowledge graphopen_memories — Retrieve specific memoriesConfiguration is passed through the environment: PYTHONPATH, CORTEXGRAPH_STORAGE_PATH, LTM_VAULT_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
The server ships on PyPI as mnemex, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Mnemex's toolset — save_memory, search_memory, search_unified and 11 more — is a fair guide to whether it matches your workflow. It is maintained by simplemindedbot; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| save_memory | Save new memory with tags, entities (auto-enrichment in v0.6.0+) |
| search_memory | Search with filters and scoring (includes review candidates) |
| search_unified | Unified search across STM + LTM |
| touch_memory | Reinforce memory (boost strength) |
| observe_memory_usage | Record memory usage for natural spaced repetition |
| analyze_message | ✨ **NEW v0.6.0** - Detect memory-worthy content, suggest entities/strength |
| analyze_for_recall | ✨ **NEW v0.6.0** - Detect recall intent, suggest search queries |
| promote_memory | Move to long-term storage |
| cluster_memories | Find similar memories |
| consolidate_memories | Merge similar memories (algorithmic) |
| read_graph | Get entire knowledge graph |
| open_memories | Retrieve specific memories |
| create_relation | Link memories explicitly |
| Installation | The Installation tool exposed by this server. |
{
"mcpServers": {
"cortexgraph": {
"command": "uv",
"args": ["--directory", "/path/to/cortexgraph", "run", "cortexgraph"],
"env": {"PYTHONPATH": "/path/to/cortexgraph/src"}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| PYTHONPATH | Filesystem location the server is allowed to use. | Optional |
| CORTEXGRAPH_STORAGE_PATH | Filesystem location the server is allowed to use. | Optional |
| LTM_VAULT_PATH | Filesystem location the server is allowed to use. | Optional |
A knowledge graph your assistant keeps between sessions — entities, relations and observations that persist.
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
A structured scratchpad for hard problems — stepwise reasoning with revisions, branches and visible logic.
Symbol-level code navigation, refactoring and memory for coding agents — the IDE brain your assistant has been missing.
Chat with your second brain — search, read and write vault notes through the Local REST API.