Webshift MCP Server

Rust MCP server for denoised web search — fetch, clean, and rerank web content for AI agents.

Remote serverstreamable-httpPython

What is the Webshift MCP server?

If you already use Webshift, the webshift mcp server is the piece that lets your assistant work with it directly. Rust MCP server for denoised web search — fetch, clean, and rerank web content for AI agents.

What the server does

WebShift is a Rust library and MCP server that shifts noisy web pages into clean, right-sized text for LLM consumption.

Available tools

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

  • webshift_query — Full search pipeline: search + fetch + clean + rerank + (optional) summarize
  • webshift_fetch — Single page fetch and clean
  • webshift_onboarding — Returns a JSON guide for the agent (budgets, backends, tips)

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.

Credentials and setup notes

Configuration is passed through the environment: WEBSHIFT_SEARXNG_URL, WEBSHIFT_BRAVE_API_KEY, WEBSHIFT_GOOGLE_API_KEY, WEBSHIFT_BING_API_KEY, WEBSHIFT_LLM_BASE_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.

Where it fits

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. Webshift's toolset — webshift_query, webshift_fetch, webshift_onboarding — is a fair guide to whether it matches your workflow. It is maintained by annibale-x; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Worth knowing first

  • 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
webshift_queryFull search pipeline: search + fetch + clean + rerank + (optional) summarize
webshift_fetchSingle page fetch and clean
webshift_onboardingReturns a JSON guide for the agent (budgets, backends, tips)

How to install the Webshift MCP server

{
  "mcpServers": {
    "webshift": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "searxng/searxng"],
      "env": {
        "WEBSHIFT_SEARXNG_URL": "your-value",
        "WEBSHIFT_BRAVE_API_KEY": "your-value",
        "WEBSHIFT_GOOGLE_API_KEY": "your-value",
        "WEBSHIFT_BING_API_KEY": "your-value",
        "WEBSHIFT_LLM_BASE_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
WEBSHIFT_SEARXNG_URLEndpoint or connection string the server talks to.Yes
WEBSHIFT_BRAVE_API_KEYCredential the server authenticates with.Yes
WEBSHIFT_GOOGLE_API_KEYCredential the server authenticates with.Yes
WEBSHIFT_BING_API_KEYCredential the server authenticates with.Yes
WEBSHIFT_LLM_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Webshift to webshift query.
  • Use Webshift to webshift fetch.
  • Use Webshift to webshift onboarding.

Frequently asked questions

It connects Webshift to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (webshift_query, webshift_fetch, webshift_onboarding) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Webshift directly.