PluginBench
MCP Server
Active
MIT

io.github.Lykhoyda/ask-llm MCP Server

io.github.Lykhoyda/ask-llm

What is the io.github.Lykhoyda/ask-llm MCP server?

Unified MCP server — auto-detects Gemini, Codex, Ollama, Antigravity; registers available tools

How to install io.github.Lykhoyda/ask-llm

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • OLLAMA_HOST

    Ollama server address (default: http://localhost:11434)

  • ASK_ANTIGRAVITY_TIMEOUT_MS

    Timeout for Antigravity (agy) execution in milliseconds (default: 300000 = 5 minutes)

  • ASK_ANTIGRAVITY_SANDBOX

    Set to '0' to drop agy's --sandbox flag if it blocks --add-dir context reads (default: sandbox on)

  • GMCPT_TIMEOUT_MS

    Timeout for CLI execution in milliseconds (default: 300000 = 5 minutes)

  • GMCPT_LOG_LEVEL

    Log verbosity: debug, info, warn, error (default: warn)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "ask-llm": {
      "command": "npx",
      "args": [
        "-y",
        "ask-llm-mcp"
      ],
      "env": {
        "OLLAMA_HOST": "<YOUR_OLLAMA_HOST>",
        "ASK_ANTIGRAVITY_TIMEOUT_MS": "<YOUR_ASK_ANTIGRAVITY_TIMEOUT_MS>",
        "ASK_ANTIGRAVITY_SANDBOX": "<YOUR_ASK_ANTIGRAVITY_SANDBOX>",
        "GMCPT_TIMEOUT_MS": "<YOUR_GMCPT_TIMEOUT_MS>",
        "GMCPT_LOG_LEVEL": "<YOUR_GMCPT_LOG_LEVEL>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "ask-llm": {
      "command": "npx",
      "args": [
        "-y",
        "ask-llm-mcp"
      ],
      "env": {
        "OLLAMA_HOST": "<YOUR_OLLAMA_HOST>",
        "ASK_ANTIGRAVITY_TIMEOUT_MS": "<YOUR_ASK_ANTIGRAVITY_TIMEOUT_MS>",
        "ASK_ANTIGRAVITY_SANDBOX": "<YOUR_ASK_ANTIGRAVITY_SANDBOX>",
        "GMCPT_TIMEOUT_MS": "<YOUR_GMCPT_TIMEOUT_MS>",
        "GMCPT_LOG_LEVEL": "<YOUR_GMCPT_LOG_LEVEL>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "ask-llm": {
      "command": "npx",
      "args": [
        "-y",
        "ask-llm-mcp"
      ],
      "env": {
        "OLLAMA_HOST": "<YOUR_OLLAMA_HOST>",
        "ASK_ANTIGRAVITY_TIMEOUT_MS": "<YOUR_ASK_ANTIGRAVITY_TIMEOUT_MS>",
        "ASK_ANTIGRAVITY_SANDBOX": "<YOUR_ASK_ANTIGRAVITY_SANDBOX>",
        "GMCPT_TIMEOUT_MS": "<YOUR_GMCPT_TIMEOUT_MS>",
        "GMCPT_LOG_LEVEL": "<YOUR_GMCPT_LOG_LEVEL>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "ask-llm": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ask-llm-mcp"
      ],
      "env": {
        "OLLAMA_HOST": "<YOUR_OLLAMA_HOST>",
        "ASK_ANTIGRAVITY_TIMEOUT_MS": "<YOUR_ASK_ANTIGRAVITY_TIMEOUT_MS>",
        "ASK_ANTIGRAVITY_SANDBOX": "<YOUR_ASK_ANTIGRAVITY_SANDBOX>",
        "GMCPT_TIMEOUT_MS": "<YOUR_GMCPT_TIMEOUT_MS>",
        "GMCPT_LOG_LEVEL": "<YOUR_GMCPT_LOG_LEVEL>"
      }
    }
  }
}
Claude Code
claude mcp add ask-llm --env OLLAMA_HOST=<YOUR_OLLAMA_HOST> --env ASK_ANTIGRAVITY_TIMEOUT_MS=<YOUR_ASK_ANTIGRAVITY_TIMEOUT_MS> --env ASK_ANTIGRAVITY_SANDBOX=<YOUR_ASK_ANTIGRAVITY_SANDBOX> --env GMCPT_TIMEOUT_MS=<YOUR_GMCPT_TIMEOUT_MS> --env GMCPT_LOG_LEVEL=<YOUR_GMCPT_LOG_LEVEL> -- npx -y ask-llm-mcp

Related MCP servers

Bridge Claude with Google's Antigravity CLI (agy) for code review and second opinions

12
TypeScript
MIT
View repository →

Bridge Claude with OpenAI Codex CLI for AI-to-AI collaboration, code review, and second opinions

12
TypeScript
MIT
View repository →

Bridge Claude with Gemini CLI for AI-to-AI collaboration, code review, and second opinions

12
TypeScript
MIT
View repository →

Bridge Claude with local Ollama LLMs for private AI-to-AI collaboration — no API keys, fully local

12
TypeScript
MIT
View repository →