
How to add Roundtable AI MCP Server to Claude Desktop
Local MCP server that delegates coding tasks to specialized AI sub-agents (Codex, Claude, Cursor, Gemini) in parallel. Paste the config into ~/Library/Application Support/Claude/claude_desktop_config.json and restart Claude Desktop.
Last updated June 14, 2026 ยท 115โ ยท stdio ยท no auth
Claude Desktop config for Roundtable AI MCP Server
pip install roundtable-ai{
"mcpServers": {
"roundtable-ai-mcp-server": {
"command": "uvx",
"args": [
"roundtable-ai@latest"
],
"env": {
"CLI_MCP_SUBAGENTS": "codex,claude,cursor,gemini"
}
}
}
}Requires `uv` (the Python package runner). Install it from https://docs.astral.sh/uv/ if `uvx` is not found.
Setup steps
- 1Open Claude Desktop โ Settings โ Developer โ Edit Config (this opens ~/Library/Application Support/Claude/claude_desktop_config.json).
- 2Paste the Roundtable AI MCP Server config below under the top-level "mcpServers" key.
- 3Fill in any placeholder secrets (API keys, paths) in the snippet.
- 4Save the file, then fully quit and reopen Claude Desktop.
- 5Open a chat and confirm Roundtable AI MCP Server's tools appear under the ๐ tools menu.
Before you start
- Python 3.10+
- pip or uv/uvx to install the roundtable-ai package
- The CLI tools for the sub-agents you enable (e.g. Codex, Claude Code, Cursor, Gemini), installed and authenticated with your own API keys/subscriptions
What Roundtable AI MCP Server can do in Claude Desktop
check_codex_availabilityVerify Codex CLI status / availability.
check_claude_availabilityVerify Claude Code CLI status / availability.
check_cursor_availabilityVerify Cursor CLI status / availability.
check_gemini_availabilityVerify Gemini CLI status / availability.
execute_codex_taskRun coding tasks through Codex.
execute_claude_taskRun coding tasks through Claude Code.
execute_cursor_taskRun coding tasks through Cursor.
execute_gemini_taskRun coding tasks through Gemini.
Security
Runs locally and invokes your installed CLI coding agents (Codex, Claude Code, Cursor, Gemini), executing tasks against your codebase with your existing API keys/subscriptions. Sub-agents run local tools such as read_file and run_shell_command, so only enable agents you trust with shell and file access in your project.
Roundtable AI MCP Server + Claude Desktop FAQ
Where is the Claude Desktop config file?
Claude Desktop reads MCP servers from ~/Library/Application Support/Claude/claude_desktop_config.json. Paste the Roundtable AI MCP Server config there under the "mcpServers" key and restart the client.
Is Roundtable AI MCP Server safe to use with Claude Desktop?
Runs locally and invokes your installed CLI coding agents (Codex, Claude Code, Cursor, Gemini), executing tasks against your codebase with your existing API keys/subscriptions. Sub-agents run local tools such as read_file and run_shell_command, so only enable agents you trust with shell and file access in your project.
Does Roundtable charge extra to use multiple models?
No. It invokes the CLI tools you already have installed and uses your existing API keys and subscriptions with zero markup; cost is the same as running the tools manually.
How do I choose which AI assistants are enabled?
Set the CLI_MCP_SUBAGENTS environment variable (e.g. "codex,claude,cursor,gemini") or pass --agents on the command line (e.g. `roundtable-ai --agents codex,claude`).
How do I add it to Claude Code?
Run `claude mcp add roundtable-ai -- roundtable-ai --agents gemini,claude,codex,cursor`, or with uvx: `claude mcp add roundtable-ai -- uvx roundtable-ai@latest --agents gemini,claude,codex,cursor`.