io.github.ThunderEagle/context-bridge
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@io.github.ThunderEagle/context-bridgesave a memory that we decided to use React for the frontend"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ContextBridge
A zero-dependency MCP memory server for Windows that gives AI coding assistants a shared, persistent memory layer with semantic search.
What is ContextBridge?
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.
Related MCP server: AIVectorMemory
Why ContextBridge?
Zero external dependencies — No Docker, Postgres, Python, or Ollama. Everything runs in one Windows Service process.
In-process embeddings — Embedding model (all-MiniLM-L6-v2, ~22 MB) runs via ONNX Runtime; no external API calls.
Single-file storage — SQLite database at
%ProgramData%\ContextBridge\memories.db. Backup is one file copy.Shared across tools — Claude Code (HTTP), Claude Desktop (stdio), Cline, VS Code Chat Agents all connect to the same memory store in real-time.
Memory survives service restarts — Memories persist in SQLite; the embedding model loads once on startup and stays warm.
Requirements
Windows 10 / Windows 11 (required for Windows Service integration)
Option A: .NET 10 SDK (if installing via
dotnet tool)Option B: Windows 10+ (no additional prerequisites if downloading a pre-built .exe)
Admin PowerShell (required to install/uninstall the Windows Service)
Quick Start
Option A: Install via dotnet global tool
If you have the .NET 10 SDK installed:
dotnet tool install -g ThunderEagle.ContextBridgeThis places a context-bridge executable on your system PATH.
Option B: Direct download
Download a pre-built executable from GitHub Releases (no SDK required; one-time SmartScreen warning). Add the .exe to your PATH or invoke it directly.
First-run setup
Run these two commands in admin PowerShell (right-click → "Run as Administrator"):
# 1. Download the embedding model, register as Windows Service, start it
context-bridge service install
# 2. Configure your AI tools to connect
context-bridge configureWhat happens:
service installdownloads the embedding model (~22 MB), registers the Windows Service, sets it to auto-start on boot, and starts it immediately.configureauto-detects installed clients (Claude Code, Claude Desktop, Cline, VS Code Chat) and wires them up to connect to the service.
The service now runs in the background. Your AI tools will see the memory store the next time you restart them.
Verify the service is running:
Get-Service ContextBridgeExpected output: Status = Running
Supported Clients
Client | Transport | Version | Notes |
Claude Code | HTTP | Latest | Auto-configured by |
Claude Desktop | stdio | Latest | Auto-configured via |
Cline (VS Code) | HTTP | Latest | Auto-configured by |
VS Code Chat Agents | HTTP | 1.99+ | Auto-configured by |
All clients share the same SQLite database via concurrent connections; memories written by one tool are immediately visible to others.
MCP Tools
ContextBridge exposes seven MCP tools for your AI assistants to use:
Tool | Purpose |
| Store a single memory with automatic semantic embedding and optional tags |
| Store multiple related memories atomically (efficient end-of-session extraction) |
| Semantic search — natural language query, returns nearest-neighbor results |
| Paginated list of all memories with optional tag filters |
| Update a memory's content (re-embedded automatically) |
| Delete a memory by ID |
| Service health check, record count, model info |
Tag conventions (optional; assigned by the AI tool):
project:<repo-name>— scope memories to a projecttype:decision— architectural or technology choicestype:preference— coding style, tooling, workflow preferencestype:pattern— recurring patterns or conventionstype:reference— pointers to external resources or documentation
Handoff — Resuming Sessions
Memories are permanent facts. A handoff is something different: ephemeral session state that lets you resume where you left off in a future session, without reloading conversation history.
How it works
At the end of a session, ask your AI assistant to save its state:
"Save a handoff for project context-bridge with what we were working on."
The model calls handoff_write with a summary of current work — decisions made, next steps, open questions — scoped to the project.
At the start of the next session, the model calls handoff_list automatically (via server instructions) and incorporates any prior handoff as its opening context. It then calls handoff_acknowledge to remove the handoff once processed.
Handoff tools
Tool | Purpose |
| Capture session state — what you're working on, decisions made, next steps |
| Retrieve active handoffs, optionally filtered by project |
| Remove a handoff after processing it (permanent deletion) |
Key parameters for handoff_write:
content— the session summary (free-form text)project— project identifier, e.g.context-bridge(optional but recommended)ttl_days— how many days to keep the handoff before auto-expiry (default: 7)
Handoffs vs. memories
Memories | Handoffs | |
Purpose | Durable facts, decisions, preferences | Ephemeral "where I was" snapshots |
Lifespan | Permanent (until explicitly deleted) | TTL-bounded (default 7 days) |
Search | Semantic search via | Exact lookup via |
Cleanup |
|
|
Do not convert handoff content to memories automatically. Memories are for facts that will remain true indefinitely. If something from a resumed session rises to that level, write it via memory_write separately.
Explicit resumption
If your MCP client supports the prompts capability (e.g. Claude Code), you can trigger a session resumption explicitly:
/mcp__context-bridge__resume-session context-bridgeThis invokes the resume-session named prompt, which tells the model to look up any handoff for the specified project and incorporate it.
Expiry and reliability
Handoffs expire after ttl_days and are purged on service startup. If a session crashes before handoff_acknowledge is called, the handoff survives until its TTL — it will surface again in the next session's handoff_list call.
Importing Existing Context
If you've been using Claude Code's built-in file-based memory (~/.claude/projects/<name>/memory/), you can migrate that context into ContextBridge without any special tooling. Just ask:
"Check your memory files and add any relevant entries to context-bridge using
memory_batch_write."
Claude Code reads its own memory index, iterates the entries, and calls memory_batch_write to store them in ContextBridge — where they become semantically searchable and visible to all connected clients immediately.
You can scope the request: "import only entries tagged project:my-repo" or "add everything in your memory files."
Once imported, you can remove the original file-based entries to avoid maintaining two stores. ContextBridge becomes the single source of truth, shared across Claude Code, Claude Desktop, and any other connected client.
CLI Reference
All functionality is controlled via the context-bridge command. Run from any command-line (admin PowerShell required for service install/uninstall/config set).
Service Management
context-bridge service install # Download model, register service, start it
context-bridge service start # Start the service (no-op if already running)
context-bridge service stop # Stop the service gracefully
context-bridge service status # Show current status
context-bridge service uninstall # Stop and unregister (preserves memories.db)Model Management
context-bridge model download # Download embedding model (~22 MB) from Hugging Face
context-bridge model download --yes # Skip confirmation, force re-downloadConfiguration
context-bridge config get port # Show current HTTP port (default: 5290)
context-bridge config set port 8000 # Change HTTP port (requires service restart)Configuration is stored in %ProgramData%\ContextBridge\appsettings.json. Changes take effect on next service start.
Client Configuration
context-bridge configure # Auto-configure all installed clientsThis command:
Detects installed AI clients (Claude Code, Claude Desktop, Cline, VS Code)
Writes MCP server configuration for each client
For Claude Code: injects usage guidelines into
~/.claude/CLAUDE.mdPrints which clients were configured
Example output:
Claude Code configured (HTTP transport)
Claude Desktop configured (stdio transport)
Cline configured (HTTP transport)
VS Code Chat Agents configured (HTTP transport)
Configured 4 client(s). Restart them to pick up changes.Run this again after:
Installing a new AI client
Changing the service port (
config set port)Updating ContextBridge itself
Security
Security model: Kestrel binds exclusively to 127.0.0.1 (localhost only). No authentication, no TLS.
Design rationale: The localhost bind is the security perimeter. A process with enough privilege to intercept traffic on 127.0.0.1 already has broad machine access regardless of additional authentication.
Sensitive data: Treat %ProgramData%\ContextBridge\memories.db as sensitive — it contains plaintext memory content. Any credentials or API keys stored in memories should be considered readable by local processes. Keep backups secure accordingly.
Build from Source
For developers who want to modify, test, or run ContextBridge locally.
Prerequisites
.NET 10 SDK — provides
dotnetCLI and runtimeWindows 10 / Windows 11
Admin PowerShell — required to install as a Windows Service
Git
Clone and Build
git clone https://github.com/ThunderEagle/context-bridge.git
cd context-bridge
dotnet buildBuild time: 30–60 seconds on first run; subsequent builds are faster. Warnings are treated as errors per project policy.
Run Tests
dotnet testThis executes all xUnit integration tests (~2–5 minutes):
Vector search accuracy validation
Memory persistence across restarts
All MCP tool implementations
Schema migrations
SQLite + sqlite-vec integration
Tests use real temp-file SQLite databases (not in-memory) because sqlite-vec requires file-backed connections.
Run Locally (Console Mode)
To test the service without installing as a Windows Service:
dotnet run --project src/ContextBridge.ServiceThis starts the HTTP MCP server in the foreground:
Binding:
http://127.0.0.1:5290(localhost only)Storage:
%LOCALAPPDATA%\ContextBridge\memories.db(user temp directory)Logging: Console output shows startup, request traces, and errors
The service runs until you press Ctrl+C. Expected startup time: 5–10 seconds (ONNX model loads and JIT-compiles on first run; subsequent starts are faster).
Install as a Windows Service (from source)
Publish the project, then install from the published binary:
dotnet publish -c Release -o ./publish
./publish/ContextBridge.Service.exe service installImportant: Run in admin PowerShell. This registers ContextBridge as a Windows Service with auto-start enabled, identical to the released executable.
Publishing to a separate directory avoids file-locking issues if you rebuild the project while the service is running.
Uninstall:
./publish/ContextBridge.Service.exe service uninstallRoadmap
v1 (current) — Windows Service, in-process embeddings (all-MiniLM-L6-v2), SQLite vector storage, Claude Code + Claude Desktop support.
v2 — Third-party editor support (Cursor, Windsurf), web dashboard, configurable embedding providers.
v3 — Cross-platform support (macOS, Linux), expanded client ecosystem.
Technology Stack
For contributors and those interested in architectural details.
Concern | Technology | Why |
Runtime | .NET 10 Worker Service ( | Windows Service integration, clean distribution, no external runtime |
Embeddings | ONNX Runtime + all-MiniLM-L6-v2 INT8 | Fast, bundled, 384-dim vectors, ~22 MB model, in-process |
Vector Search | sqlite-vec extension | Native vector operations in SQLite, single-file storage, no external DB |
Data Access | Dapper + raw SQL | Sqlite-vec requires raw SQL; Dapper handles object mapping |
AI Abstraction |
| Standard AI library for .NET |
CLI | System.CommandLine | Built-in CLI parsing, minimal dependencies |
MCP Transport | Streamable HTTP (ModelContextProtocol SDK) | Shared service, concurrent clients, clean async/await model |
No external dependencies: Core domain logic depends only on C# standard library. Infrastructure and CLI add Microsoft packages and MCP SDK.
Full design rationale: see docs/DESIGN.md and docs/adr/ (Architectural Decision Records).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA local MCP server for AI assistants to store and retrieve personal memories on disk, with optional semantic search using embeddings.Last updated
- AlicenseBqualityBmaintenanceMCP server that provides cross-session persistent memory for AI coding assistants using local vector database and semantic search, enabling automatic recall of project context, issues, and tasks.Last updated991Apache 2.0
- Alicense-qualityBmaintenanceA self-hosted MCP memory server that gives AI assistants persistent, semantic memory by storing facts as vector embeddings locally, supporting semantic search and swappable embedding models.Last updated161MIT
- Flicense-qualityDmaintenanceA local MCP server that provides semantic memory storage and retrieval for coding and AI agents, enabling durable context across chat sessions.Last updated824
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Cloud-hosted MCP server for durable AI memory
Persistent memory and cross-session learning for AI coding assistants (hosted remote MCP).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ThunderEagle/context-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server