Fetchmux MCP Server

Self-hosted retrieval router for AI agents: budgets, provider routing, route receipts.

Remote serverstreamable-httpTypeScript

What is the Fetchmux MCP server?

Connect Fetchmux to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Self-hosted retrieval router for AI agents: budgets, provider routing, route receipts. The fetchmux mcp server is what makes that connection.

What the server does

Your agents stop hard-coding a provider into prompts and app code. They send one request shape; the gateway picks an eligible provider under a policy you control, enforces the budget and deadline before the call, retries safely on failure, and returns normalized results plus a full trace. You keep your provider keys — they never leave your gateway.

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Provider — Use
  • Brave — web search
  • Tavily — web search, research
  • Exa — web search, docs
  • Firecrawl — page content
  • Crossref — scholarly metadata
  • Method — Path
  • GET — /health
  • POST — /v1/route/preview
  • Variable — Default
  • FETCHMUX_API_KEY — none
  • FETCHMUX_API_KEYS — none

Credentials and setup notes

Configuration is passed through the environment: FETCHMUX_BASE_URL, FETCHMUX_API_KEY, CROSSREF_ENABLED, CROSSREF_CONTACT_EMAIL, BRAVE_API_KEY, BRAVE_COST_PER_REQUEST_USD, TAVILY_API_KEY, EXA_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Fetchmux.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Among the search and retrieval options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Fetchmux's toolset — Provider, Brave, Tavily and 11 more — is a fair guide to whether it matches your workflow. It is maintained by krutftw; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
ProviderUse
Braveweb search
Tavilyweb search, research
Exaweb search, docs
Firecrawlpage content
Crossrefscholarly metadata
MethodPath
GET/health
POST/v1/route/preview
VariableDefault
FETCHMUX_API_KEYnone
FETCHMUX_API_KEYSnone
FETCHMUX_AUTH_DISABLEDfalse
FETCHMUX_ALLOWED_ORIGINSnone

How to install the Fetchmux MCP server

{
  "mcpServers": {
    "fetchmux": {
      "command": "npx",
      "args": ["-y", "npm"],
      "env": {
        "FETCHMUX_BASE_URL": "your-value",
        "FETCHMUX_API_KEY": "your-value",
        "CROSSREF_ENABLED": "your-value",
        "CROSSREF_CONTACT_EMAIL": "your-value",
        "BRAVE_API_KEY": "your-value",
        "BRAVE_COST_PER_REQUEST_USD": "your-value",
        "TAVILY_API_KEY": "your-value",
        "EXA_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
FETCHMUX_BASE_URLEndpoint or connection string the server talks to.Yes
FETCHMUX_API_KEYCredential the server authenticates with.Yes
CROSSREF_ENABLEDConfiguration value read at startup.Optional
CROSSREF_CONTACT_EMAILConfiguration value read at startup.Optional
BRAVE_API_KEYCredential the server authenticates with.Yes
BRAVE_COST_PER_REQUEST_USDConfiguration value read at startup.Optional
TAVILY_API_KEYCredential the server authenticates with.Yes
EXA_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Fetchmux to Provider.
  • Use Fetchmux to Brave.
  • Use Fetchmux to Tavily.

Frequently asked questions

It connects Fetchmux to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Provider, Brave, Tavily, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Fetchmux directly.