
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@contextbridge_ai/mcp
Advanced tools
Context portability MCP server and shared engine for AI conversation handoffs
ContextBridge is a context portability tool for AI conversations. It compresses an in-progress conversation into a structured context block that preserves the user's goal, confirmed decisions, current state, open threads, artifacts, constraints, recent pivots, and suggested next step, then formats that handoff so another AI can continue without forcing the user to restate everything.
The project ships as a shared engine with two surfaces. The first is an MCP server for developer tools, agents, and Claude Desktop. The second is a Chrome extension runtime that captures visible chat transcripts from Claude, ChatGPT, and Gemini, runs them through the same compression engine, and opens a destination platform with a ready-to-paste continuation prompt.
Add this to your Claude Desktop MCP config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"contextbridge": {
"command": "npx",
"args": ["-y", "@contextbridge_ai/mcp"],
"env": {
"GROQ_API_KEY": "your_groq_api_key_here"
}
}
}
}
Or with OpenAI:
{
"mcpServers": {
"contextbridge": {
"command": "npx",
"args": ["-y", "@contextbridge_ai/mcp"],
"env": {
"OPENAI_API_KEY": "your_openai_api_key_here",
"OPENAI_MODEL": "gpt-4.1-mini"
}
}
}
}
For a hosted no-key lane instead of BYOK:
{
"mcpServers": {
"contextbridge": {
"command": "npx",
"args": ["-y", "@contextbridge_ai/mcp"],
"env": {
"CONTEXTBRIDGE_HOSTED_URL": "https://your-hosted-endpoint.example/v1",
"CONTEXTBRIDGE_HOSTED_MODEL": "mistralai/Mistral-7B-Instruct-v0.2"
}
}
}
}
compress_contextCompresses a raw transcript into a structured context block.
Parameters:
transcript (string, required): the raw conversation transcript to compress.provider ("openai" | "openai-chat" | "google" | "groq" | "custom" | "hosted", optional): provider override.model (string, optional): model override for the selected lane.apiKey (string, optional): BYOK API key override.baseUrl (string, optional): API base URL override.hostedApiKey (string, optional): optional auth key for the hosted lane.format_for_targetFormats a compressed context block for a destination platform.
Parameters:
context_block (object, required): a validated ContextBridge compressed context block.target ("claude" | "chatgpt" | "gemini", required): destination AI platform.resume_contextBuilds a destination-ready landing package from a compressed context block.
Parameters:
context_block (object, required): a validated ContextBridge compressed context block.target ("claude" | "chatgpt" | "gemini", required): destination AI platform.ContextBridge auto-selects the OpenAI Responses lane when a BYOK key is present.
Environment variables:
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_MODEL=gpt-4.1-mini
OPENAI_BASE_URL=https://api.openai.com/v1
Additional supported provider overrides:
GOOGLE_API_KEY=your_google_api_key_here
GOOGLE_MODEL=gemini-2.5-pro
GOOGLE_BASE_URL=https://generativelanguage.googleapis.com/v1beta/openai
GROQ_API_KEY=your_groq_api_key_here
GROQ_MODEL=llama-3.3-70b-versatile
GROQ_BASE_URL=https://api.groq.com/openai/v1
CONTEXTBRIDGE_API_KEY=your_custom_api_key_here
CONTEXTBRIDGE_MODEL=your_custom_model_here
CONTEXTBRIDGE_BASE_URL=https://your-endpoint.example/v1
CONTEXTBRIDGE_PROVIDER=custom
The hosted lane is the no-key path for end users who do not bring their own provider credentials.
Environment variables:
CONTEXTBRIDGE_HOSTED_URL=https://your-hosted-endpoint.example/v1
CONTEXTBRIDGE_HOSTED_MODEL=mistralai/Mistral-7B-Instruct-v0.2
CONTEXTBRIDGE_HOSTED_API_KEY=
Selection priority:
apiKey option passed into compression uses the OpenAI Responses BYOK lane.OPENAI_API_KEY uses the OpenAI Responses BYOK lane.CONTEXTBRIDGE_HOSTED_URL uses the hosted lane.The Chrome extension runtime lives in extension/ and builds into extension/dist/.
npm run build.chrome://extensions.extension/dist directory.Contributions are welcome. The highest-leverage areas are extraction quality evaluation, browser collector resilience, destination formatting quality, hosted-lane infrastructure, and real-world handoff testing across platforms.
MIT. See LICENSE.
FAQs
Context portability MCP server and shared engine for AI conversation handoffs
The npm package @contextbridge_ai/mcp receives a total of 15 weekly downloads. As such, @contextbridge_ai/mcp popularity was classified as not popular.
We found that @contextbridge_ai/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.