CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Context Bridge

prateekg7/context-bridge
1authSTDIOregistry active
Summary

Solves the conversation handoff problem when you hit context limits or switch AI platforms mid-task. Exposes three MCP tools: compress_context takes a raw transcript and extracts goal, decisions, state, open threads, and next steps into a structured block; format_for_target adapts that block for Claude, ChatGPT, or Gemini; resume_context builds the full landing package. Runs compression through OpenAI, Google, Groq, or a custom endpoint with BYOK, or falls back to a hosted no-key lane. Installs via npx in Claude Desktop. Useful when you need to move a complex multi-turn conversation between providers without losing the thread or forcing the user to manually summarize progress.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

ContextBridge

npm version MCP Registry

ContextBridge is a context portability tool for AI conversations. This package publishes the MCP server surface: 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 published npm artifact is the stdio MCP server for Claude Desktop, agent runtimes, and other MCP-compatible hosts. The browser extension runtime is developed in the same repository, but it is not part of this MCP Registry publishing flow.

Published Links

  • npm package: @contextbridge_ai/mcp
  • MCP Registry search: io.github.prateekg7/context-bridge
  • MCP Registry API: latest version JSON
  • Source repository: prateekg7/Context-Bridge

Install In Claude Desktop

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"
      }
    }
  }
}

Available MCP Tools

compress_context

Compresses 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_target

Formats 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_context

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

BYOK Setup

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

Hosted Lane Setup

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:

  1. Explicit apiKey option passed into compression uses the OpenAI Responses BYOK lane.
  2. OPENAI_API_KEY uses the OpenAI Responses BYOK lane.
  3. CONTEXTBRIDGE_HOSTED_URL uses the hosted lane.

Contributing

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.

License

MIT. See LICENSE.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

OPENAI_API_KEYsecret

Optional BYOK API key for the OpenAI Responses or chat-completions lane.

OPENAI_MODEL

Optional model override for the OpenAI BYOK lane.

CONTEXTBRIDGE_HOSTED_URL

Optional hosted inference endpoint for the no-key lane.

CONTEXTBRIDGE_HOSTED_API_KEYsecret

Optional auth key for the hosted inference endpoint.

CONTEXTBRIDGE_HOSTED_MODEL

Optional hosted model identifier override.

Registryactive
Package@contextbridge_ai/mcp
TransportSTDIO
AuthRequired
UpdatedMay 12, 2026
View on GitHub