馃寪 **Languages:** 馃嚭馃嚫 [English](../../README.md) 路 馃嚙馃嚪 [pt-BR](../pt-BR/MCP-SERVER.md) 路 馃嚜馃嚫 [es](../es/MCP-SERVER.md) 路 馃嚝馃嚪 [fr](../fr/MCP-SERVER.md) 路 馃嚛馃嚜 [de](../de/MCP-SERVER.md) 路 馃嚠馃嚬 [it](../it/MCP-SERVER.md) 路 馃嚪馃嚭 [ru](../ru/MCP-SERVER.md) 路 馃嚚馃嚦 [zh-CN](../zh-CN/MCP-SERVER.md) 路 馃嚡馃嚨 [ja](../ja/MCP-SERVER.md) 路 馃嚢馃嚪 [ko](../ko/MCP-SERVER.md) 路 馃嚫馃嚘 [ar](../ar/MCP-SERVER.md) 路 馃嚠馃嚦 [in](../in/MCP-SERVER.md) 路 馃嚬馃嚟 [th](../th/MCP-SERVER.md) 路 馃嚮馃嚦 [vi](../vi/MCP-SERVER.md) 路 馃嚠馃嚛 [id](../id/MCP-SERVER.md) 路 馃嚥馃嚲 [ms](../ms/MCP-SERVER.md) 路 馃嚦馃嚤 [nl](../nl/MCP-SERVER.md) 路 馃嚨馃嚤 [pl](../pl/MCP-SERVER.md) 路 馃嚫馃嚜 [sv](../sv/MCP-SERVER.md) 路 馃嚦馃嚧 [no](../no/MCP-SERVER.md) 路 馃嚛馃嚢 [da](../da/MCP-SERVER.md) 路 馃嚝馃嚠 [fi](../fi/MCP-SERVER.md) 路 馃嚨馃嚬 [pt](../pt/MCP-SERVER.md) 路 馃嚪馃嚧 [ro](../ro/MCP-SERVER.md) 路 馃嚟馃嚭 [hu](../hu/MCP-SERVER.md) 路 馃嚙馃嚞 [bg](../bg/MCP-SERVER.md) 路 馃嚫馃嚢 [sk](../sk/MCP-SERVER.md) 路 馃嚭馃嚘 [uk-UA](../uk-UA/MCP-SERVER.md) 路 馃嚠馃嚤 [he](../he/MCP-SERVER.md) 路 馃嚨馃嚟 [phi](../phi/MCP-SERVER.md) --- # OmniRoute MCP Server Documentation > Model Context Protocol server with 16 intelligent tools ## Installation OmniRoute MCP is built-in. Start it with: ```bash omniroute --mcp ``` Or via the open-sse transport: ```bash # HTTP streamable transport (port 20130) omniroute --dev # MCP auto-starts on /mcp endpoint ``` ## IDE Configuration See [IDE Configs](integrations/ide-configs.md) for Antigravity, Cursor, Copilot, and Claude Desktop setup. --- ## Essential Tools (8) | Tool | Description | | :------------------------------ | :--------------------------------------- | | `omniroute_get_health` | Gateway health, circuit breakers, uptime | | `omniroute_list_combos` | All configured combos with models | | `omniroute_get_combo_metrics` | Performance metrics for a specific combo | | `omniroute_switch_combo` | Switch active combo by ID/name | | `omniroute_check_quota` | Quota status per provider or all | | `omniroute_route_request` | Send a chat completion through OmniRoute | | `omniroute_cost_report` | Cost analytics for a time period | | `omniroute_list_models_catalog` | Full model catalog with capabilities | ## Advanced Tools (8) | Tool | Description | | :--------------------------------- | :---------------------------------------------- | | `omniroute_simulate_route` | Dry-run routing simulation with fallback tree | | `omniroute_set_budget_guard` | Session budget with degrade/block/alert actions | | `omniroute_set_resilience_profile` | Apply conservative/balanced/aggressive preset | | `omniroute_test_combo` | Live-test all models in a combo | | `omniroute_get_provider_metrics` | Detailed metrics for one provider | | `omniroute_best_combo_for_task` | Task-fitness recommendation with alternatives | | `omniroute_explain_route` | Explain a past routing decision | | `omniroute_get_session_snapshot` | Full session state: costs, tokens, errors | ## Authentication MCP tools are authenticated via API key scopes. Each tool requires specific scopes: | Scope | Tools | | :------------- | :----------------------------------------------- | | `read:health` | get_health, get_provider_metrics | | `read:combos` | list_combos, get_combo_metrics | | `write:combos` | switch_combo | | `read:quota` | check_quota | | `write:route` | route_request, simulate_route, test_combo | | `read:usage` | cost_report, get_session_snapshot, explain_route | | `write:config` | set_budget_guard, set_resilience_profile | | `read:models` | list_models_catalog, best_combo_for_task | ## Audit Logging Every tool call is logged to `mcp_tool_audit` with: - Tool name, arguments, result - Duration (ms), success/failure - API key hash, timestamp ## Files | File | Purpose | | :------------------------------------------- | :------------------------------------------ | | `open-sse/mcp-server/server.ts` | MCP server creation + 16 tool registrations | | `open-sse/mcp-server/transport.ts` | Stdio + HTTP transport | | `open-sse/mcp-server/auth.ts` | API key + scope validation | | `open-sse/mcp-server/audit.ts` | Tool call audit logging | | `open-sse/mcp-server/tools/advancedTools.ts` | 8 advanced tool handlers |