Skip to content

Citrus086/mcporter-bridge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mcporter-bridge

Expose your local MCPorter registry as one stable MCP server for coding clients.

mcporter-bridge is a small FastMCP server that turns your existing mcporter setup into a single, reusable entry point for clients like Codex, Claude Code, Cline, and Cursor.

Why

If you use multiple coding clients, your MCP setup usually fragments fast:

  • Codex has one config format
  • Claude Code has another
  • Cline and Cursor add their own
  • mcporter already knows your real server registry, auth state, and runtime

mcporter-bridge keeps mcporter as the source of truth and gives clients one stable MCP server instead of another pile of duplicated configs.

What It Does

  • Reads your local mcporter registry at runtime
  • Lists configured MCP servers and their health
  • Inspects a specific server and its tool schemas
  • Calls any tool on any configured server through mcporter
  • Lazy loading: Activate/deactivate heavy MCPs on demand to save context
  • Optionally exposes local agent-reach diagnostics as helper tools

This is not a transport proxy and not an enterprise gateway. It is a local-first bridge for client integration.

Tools

Core Tools

Tool Description
mcporter_list_servers List all configured MCP servers with health status
mcporter_help Query tool usage and parameter formats (渐进式查询)
mcporter_inspect_server Inspect a server's detailed tool schemas
mcporter_call_tool Call any tool on any configured server
mcporter_introduce Get introduction and usage guide

Lazy Loading Tools

Tool Description
mcporter_list_heavy_mcps List heavy MCPs available for on-demand activation
mcporter_activate_mcp Activate a heavy MCP (e.g., chrome-devtools, playwright)
mcporter_deactivate_mcp Deactivate a heavy MCP to free up context

Utility Tools

Tool Description
mcporter_get_server Read one server definition from registry
mcporter_config_doctor Validate config files
mcporter_version Show mcporter version
agent_reach_doctor Run Agent Reach health check
agent_reach_watch Quick health + update check
agent_reach_version Show Agent Reach version

All tools return structured output with:

  • ok
  • timed_out
  • command
  • timeout_ms
  • returncode
  • stdout
  • stderr
  • parsed_json

Install

pip

pip install mcporter-bridge

pipx

pipx install mcporter-bridge

After installation, you get two commands:

  • mcporter-bridge to run the MCP server
  • mcporter-bridge-config to generate or install client snippets

local development

git clone https://github.com/Citrus086/mcporter-bridge.git
cd mcporter-bridge
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"

Requirements

  • mcporter installed and available on PATH
  • at least one configured MCP server in your local mcporter registry

Optional:

  • agent-reach installed if you want the agent_reach_* tools

Quick Check

mcporter-bridge

In another shell:

mcporter list --stdio "python3 -m mcporter_bridge" --json

Client Setup

Ready-made templates live in examples/.

Codex

Add this to ~/.codex/config.toml:

[mcp_servers.mcporter-bridge]
type = "stdio"
command = "python3"
args = ["-m", "mcporter_bridge"]
startup_timeout_ms = 30000

Or install it automatically:

mcporter-bridge-config install --client codex

Notes:

  • OpenAI’s docs confirm that Codex reads MCP config from ~/.codex/config.toml using the mcp_servers.<name> structure for MCP servers.
  • The stdio form here is also verified locally with codex mcp add --help, which accepts codex mcp add <name> -- <command...> for stdio servers.

Claude Code / Claude Desktop

Add this to your MCP config:

{
  "mcpServers": {
    "mcporter-bridge": {
      "command": "python3",
      "args": ["-m", "mcporter_bridge"]
    }
  }
}

Automatic install using the default ~/.claude.json path:

mcporter-bridge-config install --client claude

Notes:

  • Anthropic’s Claude Code docs confirm that user-scoped MCP servers live in ~/.claude.json.
  • The same docs show project-scoped servers stored in .mcp.json at the project root.
  • The documented JSON shape uses mcpServers with command, args, and env for stdio servers.

Cline

Use the same stdio shape:

{
  "mcpServers": {
    "mcporter-bridge": {
      "command": "python3",
      "args": ["-m", "mcporter_bridge"]
    }
  }
}

Generate snippets:

mcporter-bridge-config snippet --client cline

Write to an explicit config path:

mcporter-bridge-config install --client cline --config-path /path/to/mcp.json

Notes:

  • Cline’s docs confirm that MCP settings are stored in cline_mcp_settings.json.
  • For local stdio servers, the documented JSON shape uses mcpServers with command, args, env, alwaysAllow, and disabled.
  • Cline’s docs use type for remote transport config such as streamableHttp, but not in the local stdio example, so the bridge does not emit type for Cline.

Cursor

Cursor uses mcp.json with mcpServers, and for stdio servers the bridge emits type: "stdio" explicitly.

Global config example:

{
  "mcpServers": {
    "mcporter-bridge": {
      "type": "stdio",
      "command": "python3",
      "args": ["-m", "mcporter_bridge"]
    }
  }
}

Install into the default global path:

mcporter-bridge-config install --client cursor

Or write to an explicit config path:

mcporter-bridge-config install --client cursor --config-path /path/to/mcp.json

Config Helper

Print a snippet:

mcporter-bridge-config snippet --client codex

Customize the launcher:

mcporter-bridge-config snippet \
  --client claude \
  --python-command /opt/homebrew/bin/python3.13 \
  --module-name mcporter_bridge

Install directly into a config file:

mcporter-bridge-config install --client codex
mcporter-bridge-config install --client claude

When an existing config file is updated, the helper writes a sibling backup with a .bak suffix first.

Example Prompts

  • "List the MCP servers available through mcporter."
  • "Inspect the xiaohongshu server and show its tools."
  • "Call check_login_status on xiaohongshu."
  • "Run Agent Reach doctor."

Lazy Loading (按需加载)

Large MCPs like chrome-devtools (29 tools) or playwright (22 tools) consume significant context. You can keep them unloaded by default and activate only when needed.

Setup

  1. Create the heavy MCP directory:
mkdir -p ~/.mcporter/heavy/available
  1. Move heavy MCPs out of mcporter.json into separate files:
# Example: move playwright to heavy
echo '{
  "mcpServers": {
    "playwright": {
      "command": "npx",
      "args": ["-y", "@playwright/mcp@latest"]
    }
  }
}' > ~/.mcporter/heavy/available/playwright.json
  1. Remove the MCP from your main mcporter.json.

Workflow

1. mcporter_list_servers()              # Check current servers
   ↓ Need playwright but not listed?
2. mcporter_list_heavy_mcps()           # See available heavy MCPs
   ↓
3. mcporter_activate_mcp("playwright")  # Activate it
   ↓
4. mcporter_list_servers()              # Confirm activation
   ↓
5. Use playwright tools...
   ↓
6. mcporter_deactivate_mcp("playwright") # Free up context when done

This allows upstream LLMs to self-manage context by loading/unloading heavy MCPs on demand.

Environment Variables

  • MCPORTER_BRIDGE_MCPORTER_BIN: override the mcporter binary path
  • MCPORTER_BRIDGE_AGENT_REACH_BIN: override the agent-reach binary path
  • MCPORTER_BRIDGE_MAX_OUTPUT_CHARS: cap captured stdout/stderr length

Roadmap

  • higher-level convenience tools for common MCPs
  • optional tool allowlists / denylists
  • more client-specific path discovery
  • richer auth and diagnostics helpers

License

MIT

About

Expose your local MCPorter registry as one stable MCP server for coding clients.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors