What is the LLM CLI Gateway MCP server?
One MCP endpoint for Claude Code, Codex, Gemini, Grok and Mistral CLIs, with durable async jobs.
How to install LLM CLI Gateway
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"llm-cli-gateway": {
"command": "npx",
"args": [
"-y",
"llm-cli-gateway"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"llm-cli-gateway": {
"command": "npx",
"args": [
"-y",
"llm-cli-gateway"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"llm-cli-gateway": {
"command": "npx",
"args": [
"-y",
"llm-cli-gateway"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"llm-cli-gateway": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"llm-cli-gateway"
]
}
}
}Claude Code
claude mcp add llm-cli-gateway -- npx -y llm-cli-gatewayRelated MCP servers
AST-based semantic code search - understands code structure and relationships across 37 languages.
View repository →