Intercept MCP Server

MCP server with multi-tier fallback chain for fetching web content as clean markdown

Remote serverstreamable-httpGo

What is the Intercept MCP MCP server?

Most search and retrieval work still happens through a UI a human drives. Intercept MCP MCP server moves it into the conversation instead. MCP server with multi-tier fallback chain for fetching web content as clean markdown.

The short version

Give your AI the ability to read the web. One command, no API keys required.

The tools it exposes

The server publishes 8 tools. What each one is for:

  • Codex — The Codex tool exposed by this server
  • Cursor — The Cursor tool exposed by this server
  • Windsurf — The Windsurf tool exposed by this server
  • fetch — Long pages are truncated at maxLength with a notice telling the agent which startIndex continues the content. Structured output reports source
  • fetch_batch — Fetch up to 10 URLs in parallel, each through the same handler/fallback chain
  • research — Search the web and fetch the top results in one call — replaces a search followed by several fetches
  • search — Uses Brave Search API if BRAVE_API_KEY is set, then SearXNG if SEARXNG_URL is set, then DuckDuckGo as an unreliable last resort. freshness and page
  • extract — Extract specific values from a page as JSON instead of markdown prose — for when you need particular data, not the whole page. Honors per-domain auth

What it needs from you

Configuration is passed through the environment: GITHUB_TOKEN, BRAVE_API_KEY, SEARXNG_URL, CF_API_TOKEN, CF_ACCOUNT_ID, FLARESOLVERR_URL, WEB_UNLOCKER_URL. 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.

  • Node.js >= 20 - No API keys required for basic use

Getting it running

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.

How it compares

Plenty of search and retrieval servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Intercept MCP's toolset — Codex, Cursor, Windsurf and 5 more — is a fair guide to whether it matches your workflow. It is maintained by bighippoman; 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.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • 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.

Available tools

ToolWhat it does
CodexThe Codex tool exposed by this server.
CursorThe Cursor tool exposed by this server.
WindsurfThe Windsurf tool exposed by this server.
fetchLong pages are truncated at maxLength with a notice telling the agent which startIndex continues the content. Structured output reports source, quality, contentLength, truncated, nextStartIndex, and cacheAgeSeconds so ag
fetch_batchFetch up to 10 URLs in parallel, each through the same handler/fallback chain.
researchSearch the web and fetch the top results in one call — replaces a search followed by several fetches.
searchUses Brave Search API if BRAVE_API_KEY is set, then SearXNG if SEARXNG_URL is set, then DuckDuckGo as an unreliable last resort. freshness and page are ignored by the DuckDuckGo fallback.
extractExtract specific values from a page as JSON instead of markdown prose — for when you need particular data, not the whole page. Honors per-domain auth and proxies.

How to install the Intercept MCP MCP server

{
  "mcpServers": {
    "intercept": {
      "command": "npx",
      "args": ["-y", "intercept-mcp"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js >= 20 - No API keys required for basic use
VariableDescriptionRequired
GITHUB_TOKENCredential the server authenticates with.Yes
BRAVE_API_KEYCredential the server authenticates with.Yes
SEARXNG_URLEndpoint or connection string the server talks to.Yes
CF_API_TOKENCredential the server authenticates with.Yes
CF_ACCOUNT_IDConfiguration value read at startup.Optional
FLARESOLVERR_URLEndpoint or connection string the server talks to.Yes
WEB_UNLOCKER_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Intercept MCP to Codex.
  • Use Intercept MCP to Cursor.
  • Use Intercept MCP to Windsurf.

Frequently asked questions

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