Anysearch MCP Server

Unified real-time search MCP server supporting general web search, vertical domain search, parallel batch search, and full-page URL content

Local serverstdioGo

What is the Anysearch MCP server?

Unified real-time search MCP server supporting general web search, vertical domain search, parallel batch search, and full-page URL content extraction. That is what the anysearch mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

  • General Web Search — — open-ended natural language queries
  • Vertical Domain Search — — structured queries across finance, academic, security, legal, code, and more
  • Parallel Batch Search — — execute multiple independent queries in one call
  • URL Content Extraction — — fetch and extract full page content as Markdown
  • Anonymous Access — — works without an API key (with lower rate limits)

Getting it running

supergateway on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

The tools it exposes

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

  • message — what to do
  • email_already_registered — email is taken — tell the user to sign in at login_url; do not retry
  • search — The search tool exposed by this server
  • get_sub_domains — Query the vertical domain directory. Required before any search that uses a domain — returns valid sub_domains and their parameter schemas
  • batch_search — Execute 1–5 independent search queries in parallel. Single failure does not block others
  • extract — Fetch full page content from a URL and return as Markdown. Truncated at 50,000 characters. HTML pages only

What it needs from you

Configuration is passed through the environment: ANYSEARCH_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.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • 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.

How it compares

This sits in the search and retrieval group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Anysearch's toolset — message, email_already_registered, search and 3 more — is a fair guide to whether it matches your workflow. It is maintained by anysearch-ai; 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.

Available tools

ToolWhat it does
messagewhat to do
email_already_registeredemail is taken — tell the user to sign in at login_url; do **not** retry
searchThe search tool exposed by this server.
get_sub_domainsQuery the vertical domain directory. **Required before any search that uses a domain** — returns valid sub_domains and their parameter schemas.
batch_searchExecute 1–5 independent search queries in parallel. Single failure does not block others.
extractFetch full page content from a URL and return as Markdown. Truncated at 50,000 characters. HTML pages only.

How to install the Anysearch MCP server

{
  "mcpServers": {
    "anysearch": {
      "type": "sse",
      "url": "https://api.anysearch.com/mcp",
      "headers": {
        "Authorization": "Bearer ${ANYSEARCH_API_KEY}",
        "X-Anysearch-Client": "mcp/1.0.0"
      }
    }
  }
}

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

Configuration

VariableDescriptionRequired
ANYSEARCH_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Anysearch to message.
  • Use Anysearch to email already registered.
  • Use Anysearch to search.

Frequently asked questions

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