Unified real-time search MCP server supporting general web search, vertical domain search, parallel batch search, and full-page URL content
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.
supergateway on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.
The server publishes 6 tools. What each one is for:
message — what to doemail_already_registered — email is taken — tell the user to sign in at login_url; do not retrysearch — The search tool exposed by this serverget_sub_domains — Query the vertical domain directory. Required before any search that uses a domain — returns valid sub_domains and their parameter schemasbatch_search — Execute 1–5 independent search queries in parallel. Single failure does not block othersextract — Fetch full page content from a URL and return as Markdown. Truncated at 50,000 characters. HTML pages onlyConfiguration 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.
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.
| Tool | What it does |
|---|---|
| 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. |
{
"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.
| Variable | Description | Required |
|---|---|---|
| ANYSEARCH_API_KEY | Credential the server authenticates with. | Yes |
The simplest web tool that matters — fetch any URL and get model-ready markdown back.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Search built for AI, not humans — semantic web search that returns model-ready content, plus code context.
Answers, not links — delegate questions to Perplexity's search-grounded models and get cited responses back.
Put 6,000+ pre-built scrapers at your assistant's fingertips through one MCP endpoint.