A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Enable multi-model collaboration for Claude Code. Includes standardized MCP servers for OpenAI Codex, Google Gemini, and
A compact, production-oriented MCP framework that lets Claude Code call external AI tools through standardized servers.
| Server | Description |
|---|---|
email-notify.mjs | MCP server for sending email notifications |
codex-mcp.mjs | MCP server that invokes Codex CLI |
gemini-mcp.mjs | MCP server that invokes Gemini CLI |
cd mcp-servers
npm install @modelcontextprotocol/sdk nodemailer
# Codex CLI
npm install -g @openai/codex
# Gemini CLI
npm install -g @google/gemini-cli
Add to your Claude Code MCP configuration:
claude mcp add email-notify node /path/to/mcp-servers/email-notify.mjs
claude mcp add codex-mcp node /path/to/mcp-servers/codex-mcp.mjs
claude mcp add gemini-mcp node /path/to/mcp-servers/gemini-mcp.mjs
# Create config directory
mkdir -p ~/.claude
# Email configuration
cp config-examples/email-config.json.example ~/.claude/email-config.json
# Edit with your email credentials
# Gemini configuration
mkdir -p ~/.gemini
cp config-examples/gemini.env.example ~/.gemini/.env
# Edit with your API key
send_email({
subject: "Task Complete",
content: "Your task has been completed successfully!"
})
// Start a new session
codex({ prompt: "Analyze this code...", new_session: true })
// Continue conversation
codex({ prompt: "Now refactor it..." })
// Check status
codex_status()
// Reset session
codex_reset()
// Start a new session
gemini({ prompt: "Help me with...", new_session: true })
// Continue conversation
gemini({ prompt: "What about..." })
// Check status
gemini_status()
// Reset session
gemini_reset()
ccx-opensource/
├── README.md
├── README_CN.md
├── mcp-servers/
│ ├── email-notify.mjs
│ ├── codex-mcp.mjs
│ └── gemini-mcp.mjs
└── config-examples/
├── email-config.json.example
└── gemini.env.example
MIT
Issues and PRs are welcome!
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
via CLI