MCP memory server for AI coding assistants. Windows Service, ONNX embeddings, SQLite vector search.
MCP memory server for AI coding assistants. Windows Service, ONNX embeddings, SQLite vector search. The contextbridge mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.
A zero-dependency MCP memory server for Windows that gives AI coding assistants a shared, persistent memory layer with semantic search.
AI coding assistants like Claude Code are stateless—each session starts fresh, with no persistent memory of your prior context, decisions, or discoveries. ContextBridge solves this by running as a background Windows Service that all your AI tools connect to. It stores memories persistently, searchable by meaning (not keywords), so context accumulates across sessions and across different tools simultaneously.
Everything the assistant can do here goes through one of these:
project — — scope memories to a projecttype — decision — architectural or technology choicescontent — the session summary (free-form text)ttl_days — how many days to keep the handoff before auto-expiry (default: 7)memory_write — Store a single memory with automatic semantic embedding and optional tagsmemory_batch_write — Store multiple related memories atomically (efficient end-of-session extraction)memory_search — Semantic search — natural language query, returns nearest-neighbor resultsmemory_list — Paginated list of all memories with optional tag filtersmemory_update — Update a memory's content (re-embedded automatically)memory_delete — Delete a memory by IDmemory_status — Service health check, record count, model infohandoff_write — Capture session state — what you're working on, decisions made, next stepsdotnet tool) - Option B: Windows 10+ (no additional prerequisites if downloading a pre-built .exe) - Admin PowerShell (required to install/uninstall the Windows Service)Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.
Plenty of knowledge and memory servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. ContextBridge's toolset — project, type, content and 11 more — is a fair guide to whether it matches your workflow. It is maintained by ThunderEagle; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| project | <repo-name> — scope memories to a project |
| type | decision — architectural or technology choices |
| content | the session summary (free-form text) |
| ttl_days | how many days to keep the handoff before auto-expiry (default: 7) |
| memory_write | Store a single memory with automatic semantic embedding and optional tags |
| memory_batch_write | Store multiple related memories atomically (efficient end-of-session extraction) |
| memory_search | Semantic search — natural language query, returns nearest-neighbor results |
| memory_list | Paginated list of all memories with optional tag filters |
| memory_update | Update a memory's content (re-embedded automatically) |
| memory_delete | Delete a memory by ID |
| memory_status | Service health check, record count, model info |
| handoff_write | Capture session state — what you're working on, decisions made, next steps |
| handoff_list | Retrieve active handoffs, optionally filtered by project |
| handoff_acknowledge | Remove a handoff after processing it (permanent deletion) |
dotnet tool) - Option B: Windows 10+ (no additional prerequisites if downloading a pre-built .exe) - Admin PowerShell (required to install/uninstall the Windows Service)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.