Skip to content

MCP Servers

Vox MCP: Multi-Model AI Gateway

Vox lets an MCP client ask several model providers without adding hidden instructions.

The right model for the right question beats the best model for every question.

Vox MCP is a multi-model AI gateway that lets you access any AI provider directly from Claude Code, Claude Desktop, Cursor, or any MCP client. Unlike other multi-model tools, Vox uses a pure passthrough design: prompts go to providers unmodified and responses come back unmodified. No system prompt injection, no response formatting, no behavioral directives.

MCP SERVERXule LinPython / uv

Sourcegithub.com/linxule/vox-mcp

Minimal intervention. The only value Vox adds is routing and conversation memory. Everything else is pure passthrough.

Why it matters

When you're working in Claude Code and want a second opinion from Gemini, GPT, GLM, Kimi, or DeepSeek, you'd normally have to switch applications. Vox lets you query any model without leaving your current workflow.

The difference from alternatives: Most multi-model tools inject their own system prompts or modify your messages. Vox doesn't. What you send is what the model receives.

Supported providers

ProviderEnv Variable
Google GeminiGEMINI_API_KEY
OpenAIOPENAI_API_KEY
AnthropicANTHROPIC_API_KEY
xAIXAI_API_KEY
DeepSeekDEEPSEEK_API_KEY
Moonshot (Kimi)MOONSHOT_API_KEY
OpenRouterOPENROUTER_API_KEY
Custom/LocalCUSTOM_API_URL

You only need API keys for providers you want to use. Vox works with any subset.

Tools

Vox provides three tools through the MCP protocol:

chat

Send prompts to any supported model with optional file or image attachments.

"Use vox chat with gemini-2.5-pro:
Compare these two theoretical frameworks and identify tensions..."

listmodels

Show all available models, aliases, and capabilities across your configured providers. This is the source of truth for a live Vox install because provider availability depends on the API keys and allowlists present in that process.

dump_threads

Export conversation threads as JSON or Markdown. This is useful for documenting multi-model analysis.

Multi-turn conversations

Vox supports persistent threads via continuation_id. This means you can:

  1. Start a conversation with Gemini about a theoretical framework
  2. Continue the same thread with follow-up questions
  3. Switch to DeepSeek mid-conversation to get a different perspective
  4. Export the entire multi-model dialogue

Vox automatically saves threads to disk as JSONL for durability. You can export threads as Markdown.

Research workflows

Compare perspectives on the same research question:

Ask the same analytical question to 3-4 models and compare their responses. Each model brings different strengths: Claude for nuanced interpretation, Gemini for large-context synthesis, DeepSeek for cost-effective exploration.

This is particularly valuable for:

  • Theory development (different models foreground different tensions)
  • Literature gap identification
  • Methodological critique

Host support

Vox is a standard stdio MCP server, so it runs anywhere MCP runs.

Host support: which research environments this tool works in
HostSupportNotes
Claude Code (CLI)Full support`claude mcp add` or project `.mcp.json`
Claude Code (Desktop "Code" tab)Full supportSame `.mcp.json` as the CLI
Claude Desktop (chat)Full support`claude_desktop_config.json`
Codex CLI / Codex DesktopFull support`codex mcp add vox -- uv run --directory /path/to/vox python server.py`
Cursor / Windsurf / VS CodeFull supportStandard `mcp.json` / `mcp_config.json`
Cherry Studio, Witsy, other MCP clientsFull supportStandard MCP server entry — same args block as the configs below

The exact config blocks for the common hosts live in the Installation section.

Install

Two ways to set Vox up:

  • Manually — clone, configure .env, register with your MCP client. See the steps below.
  • Via Carrel — run /carrel-setup and answer yes when the interview asks about multi-model access (Gemini, GPT, Grok, Kimi, …). Carrel adds Vox at project level and prompts for at least one provider API key.

The manual path is host-agnostic; the Carrel path is Claude Code-only but skips the config steps.

Setup

Clone and install

git clone https://github.com/linxule/vox-mcp.git
cd vox-mcp
uv sync

Configure API keys

cp .env.example .env
# Edit .env — add at least one provider API key

Test the server

uv run python server.py

Add to your MCP client

See the configuration tabs below for your specific client.

MCP client configuration

Vox runs as a stdio MCP server. Replace /path/to/vox-mcp with the absolute path to your cloned repo.

Via CLI:

claude mcp add vox-mcp \
  -e GEMINI_API_KEY=your-key-here \
  -- uv run --directory /path/to/vox-mcp python server.py

Or add to .mcp.json in your project root:

{
  "mcpServers": {
    "vox-mcp": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/vox-mcp", "python", "server.py"],
      "env": {
        "GEMINI_API_KEY": "your-key-here"
      }
    }
  }
}

Tip

API keys can live in either the MCP client config or the .env file inside the vox-mcp directory (loaded automatically). If both are set and conflict, add VOX_FORCE_ENV_OVERRIDE=true to .env to prefer your local values.

Configuration options

Beyond API keys, Vox supports several configuration options in .env; the repository's .env.example is the full reference:

DEFAULT_MODEL

Set to auto (default) to let the agent pick the best model, or specify a model name like gemini-2.5-pro to always route to that model.

CONVERSATION_TIMEOUT_HOURS

How long conversation threads stay alive. Default: 24 hours. Threads expire after this period of inactivity.

MAX_CONVERSATION_TURNS

Maximum number of turns per conversation thread. Default: 100. Prevents runaway threads from consuming memory.

Model Restrictions

Per-provider allowlists like GOOGLE_ALLOWED_MODELS, OPENAI_ALLOWED_MODELS, etc. Restrict which models are available to prevent accidental use of expensive models.

Provider behavior notes

  • Vox routes Gemini requests through Google's Interactions API when available, using it statelessly (store=false) so Vox still owns conversation memory. Image inputs and failed Interactions attempts fall back to generateContent; set VOX_GEMINI_USE_INTERACTIONS=false to skip the Interactions path.
  • Gemini thinking controls differ by API surface. Gemini 3 uses thinking_level; Gemini 2.x still has thinking support, but the Interactions path maps Vox's thinking_mode to the levels that API accepts.
  • Vox omits temperature unless the caller explicitly supplies one. That preserves provider defaults for models where changing temperature is discouraged or unsupported.

Part of Research Memex

Vox integrates naturally with other Research Memex tools:

cite this page

Lin, X. (2026). Vox MCP: Multi-Model AI Gateway. Research Memex. https://research-memex.org/docs/toolkit/vox-mcp

@misc{docs-toolkit-vox-mcp-2026,
  author = {Xule Lin},
  title = {Vox MCP: Multi-Model AI Gateway},
  year = {2026},
  howpublished = {\url{https://research-memex.org/docs/toolkit/vox-mcp}},
  note = {ORCID: 0000-0001-7885-4194}
}

one renderingthe source remains