From great_cto
Local Python MCP server that routes LLM requests via OpenRouter API. Supports model selection (GREAT_CTO_ROUTER_MODEL), timeout, and max tokens. Requires OPENROUTER_API_KEY.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"great_cto_llm_router": {
"command": "python3",
"args": [
"${CLAUDE_PLUGIN_ROOT}/mcp-servers/llm-router/server.py"
],
"env": {
"OPENROUTER_API_KEY": "${OPENROUTER_API_KEY}",
"GREAT_CTO_ROUTER_MODEL": "${GREAT_CTO_ROUTER_MODEL}",
"GREAT_CTO_ROUTER_TIMEOUT": "${GREAT_CTO_ROUTER_TIMEOUT}",
"GREAT_CTO_ROUTER_MAX_TOKENS": "${GREAT_CTO_ROUTER_MAX_TOKENS}"
}
}
}
}Replace placeholder values for: OPENROUTER_API_KEY, GREAT_CTO_ROUTER_MAX_TOKENS
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server has elevated permissions. Review the source code before enabling.
Server configuration and connection parameters
python3Command-line arguments passed to the server process
Environment variables set when the server starts
OPENROUTER_API_KEY=${OPENROUTER_API_KEY}GREAT_CTO_ROUTER_MODEL=${GREAT_CTO_ROUTER_MODEL}GREAT_CTO_ROUTER_TIMEOUT=${GREAT_CTO_ROUTER_TIMEOUT}GREAT_CTO_ROUTER_MAX_TOKENS=${GREAT_CTO_ROUTER_MAX_TOKENS}Sensitive values you must provide — never committed to source control
npx claudepluginhub avelikiy/great_cto