From cc-suite
Mirrors every MCP server from .mcp.json (except codex-cli) into .codex/config.toml so Codex CLI can use the same project MCP tools as Claude Code. Idempotent — skips already-configured servers.
How this command is triggered — by the user, by Claude, or both
Slash command
/cc-suite:bridge-mcpThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# /cc-suite:bridge-mcp Copy every MCP server registered in `.mcp.json` (except `codex-cli` itself) into `.codex/config.toml` under `[mcp_servers.*]` entries, so Codex CLI can call the same project MCP tools as Claude Code. Idempotent. Skips servers already present in `.codex/config.toml`. Wraps server names containing special characters in TOML quoted keys. ## Workflow ### Step 1: Run the bridge script If the script exits non-zero, report the error output and stop. If `.mcp.json` does not exist, report: "No `.mcp.json` found — nothing to mirror." and stop. ### Step 2: Report results...
Copy every MCP server registered in .mcp.json (except codex-cli itself) into .codex/config.toml under [mcp_servers.*] entries, so Codex CLI can call the same project MCP tools as Claude Code.
Idempotent. Skips servers already present in .codex/config.toml. Wraps server names containing special characters in TOML quoted keys.
bash "${CLAUDE_PLUGIN_ROOT}/scripts/bridge_mcp.sh"
If the script exits non-zero, report the error output and stop. If .mcp.json does not exist, report: "No .mcp.json found — nothing to mirror." and stop.
Use this template:
**bridge-mcp**: MCP servers mirrored from `.mcp.json` to `.codex/config.toml`
| Server | Action |
|--------|--------|
| {server-name} | mirrored |
| {server-name} | already present (skipped) |
| codex-cli | skipped (Codex cannot call itself) |
Success criterion: script exits 0 and every server from .mcp.json (except codex-cli) appears under [mcp_servers.*] in .codex/config.toml.
npx claudepluginhub xiaolai/claude-plugin-marketplace --plugin cc-suite/cc-mcpManages MCP servers for Claude Code: add (filesystem, PostgreSQL, GitHub, Slack, Puppeteer, etc.), remove, list status, test connectivity, troubleshoot issues.
/use-mcpInvokes the MCP command as defined in .claude/commands/use-mcp.md, enabling MCP usage within Claude Code.