ReactiveMemory MCP Server gives AI assistants a persistent, queryable, locally-stored memory system backed by vector search, a temporal knowledge graph, and a vault-structured content store.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"reactivememory-mcp-server": {
"args": [
"CP.ReactiveMemory.Mcp.Server@1.*",
"--yes"
],
"type": "stdio",
"command": "dnx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
ReactiveMemory MCP Server gives AI assistants a persistent, queryable, locally-stored memory system backed by vector search, a temporal knowledge graph, and a vault-structured content store. It is designed to be the durable external memory layer for agents, copilots, and AI workflows that need to remember, reason over, and navigate accumulated knowledge across sessions.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / productivity
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
MCP Security Weekly
Get CVE alerts and security updates for ReactiveMemory.MCP.Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
ReactiveMemory MCP Server gives AI assistants a persistent, queryable, locally-stored memory system backed by vector search, a temporal knowledge graph, and a vault-structured content store. It is designed to be the durable external memory layer for agents, copilots, and AI workflows that need to remember, reason over, and navigate accumulated knowledge across sessions.
It is implemented in C# on net10.0 using ModelContextProtocol 1.3.0.
Click to install in your preferred environment:
Note:
CP.ReactiveMemory.Mcp.Server.Manual MCP configuration using NuGet:
{
"mcpServers": {
"reactivememory-mcp-server": {
"type": "stdio",
"command": "dnx",
"args": [
"CP.ReactiveMemory.Mcp.Server@1.*",
"--yes"
]
}
}
}
dnx configuration above.reactivememory_* tools.reactivememory_status to confirm the core path, current taxonomy, and fallback-safe local model status.reactivememory_memory_automanage or reactivememory_react_to_prompt at the start of each user prompt, then use reactivememory_memory_get_relevant, reactivememory_search_relays, reactivememory_search, or reactivememory_facts_query before answering from memory.reactivememory_memory_add, reactivememory_add_drawer, or reactivememory_diary_write rather than saving full transcripts. Use reactivememory_memory_classify / reactivememory_memory_should_store to audit decisions, reactivememory_memory_summarise to compress long-term groups, and reactivememory_memory_prune for dry-run pruning recommendations unless apply=true is explicitly requested.Minimal first prompt:
Call reactivememory_status, then react to this prompt with reactivememory_react_to_prompt. Search for any prior memories about this repository before planning the work.
Without persistent memory, every AI session starts from zero. ReactiveMemory solves this by giving agents a place to: