mcpserver.lol
registry/keymem
Connection check local install

keymem

Associative key-graph memory for LLM agents — recall by association, not vector similarity.

Tools 17
GitHub stars
Installs / wk 129
Licence
Transport stdio
Last checked never

Tools & capabilities

17 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.

browse_keys from source
Browse the vocabulary of one namespace when recall has no hit or you need an entry point. Returns active key clusters with hubs first, then by linked-memory count. This is index me…
cleanup_expired from source
confirm_memory from source
Confirm that a memory is still current using explicit present evidence. Never call this merely because read_memory returned the content. Use only after a current user assertion, an…
correct from source
Update outdated information. Use when user corrects you or info changes (e.g. moved cities, changed job). Old version is preserved but weakened — never lost. Omit keys to keep the…
dismiss from source
forget from source
Permanently delete a memory. Only use for completely wrong information. For outdated info, use correct() instead — it preserves history.
get_conversation from source
Load the original conversation turns for a past session when a recalled memory lacks the detail you need and you want the verbatim exchange. Reads the host coding agent
keymem from source
list_memories from source
list_sessions from source
memory_stats from source
read_key from source
read_memory from source
Read the full content and validity of one stored memory (selected via read_key). Returns the memory and all connected key clusters so exploration can continue Key → Memory → Key. P…
recall from source
recall_memories from source
Optional compatibility mode: directly return ranked memories using BM25+dense+RRF and graph expansion. Disabled unless KEYMEM_DIRECT_RECALL=true. Prefer recall → read_key → read_me…
related from source
Find other memories associated with a memory you already have (by ID). Returns neighboring memories connected by shared keys or explicit links. For normal agent-driven navigation p…
remember from source