PluginBench
MCP Server
Active
MIT

io.github.Lykhoyda/ask-ollama MCP Server

io.github.Lykhoyda/ask-ollama

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

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

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

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)

  • GMCPT_TIMEOUT_MS

    Timeout for Ollama 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-ollama": {
      "command": "npx",
      "args": [
        "-y",
        "ask-ollama-mcp"
      ],
      "env": {
        "OLLAMA_HOST": "<YOUR_OLLAMA_HOST>",
        "GMCPT_TIMEOUT_MS": "<YOUR_GMCPT_TIMEOUT_MS>",
        "GMCPT_LOG_LEVEL": "<YOUR_GMCPT_LOG_LEVEL>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "ask-ollama": {
      "command": "npx",
      "args": [
        "-y",
        "ask-ollama-mcp"
      ],
      "env": {
        "OLLAMA_HOST": "<YOUR_OLLAMA_HOST>",
        "GMCPT_TIMEOUT_MS": "<YOUR_GMCPT_TIMEOUT_MS>",
        "GMCPT_LOG_LEVEL": "<YOUR_GMCPT_LOG_LEVEL>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "ask-ollama": {
      "command": "npx",
      "args": [
        "-y",
        "ask-ollama-mcp"
      ],
      "env": {
        "OLLAMA_HOST": "<YOUR_OLLAMA_HOST>",
        "GMCPT_TIMEOUT_MS": "<YOUR_GMCPT_TIMEOUT_MS>",
        "GMCPT_LOG_LEVEL": "<YOUR_GMCPT_LOG_LEVEL>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "ask-ollama": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ask-ollama-mcp"
      ],
      "env": {
        "OLLAMA_HOST": "<YOUR_OLLAMA_HOST>",
        "GMCPT_TIMEOUT_MS": "<YOUR_GMCPT_TIMEOUT_MS>",
        "GMCPT_LOG_LEVEL": "<YOUR_GMCPT_LOG_LEVEL>"
      }
    }
  }
}
Claude Code
claude mcp add ask-ollama --env OLLAMA_HOST=<YOUR_OLLAMA_HOST> --env GMCPT_TIMEOUT_MS=<YOUR_GMCPT_TIMEOUT_MS> --env GMCPT_LOG_LEVEL=<YOUR_GMCPT_LOG_LEVEL> -- npx -y ask-ollama-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 →

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

12
TypeScript
MIT
View repository →