AnySearch
Unified real-time search engine skill for AI agents.
What is AnySearch?
AnySearch is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to unified real-time search engine skill for ai agents.
Unified real-time search engine skill for AI agents.
This server falls under the Search & Data Extraction category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- Unified real-time search engine skill for AI agents.
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx anysearchConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use AnySearch
AnySearch is a unified real-time search MCP server that gives AI agents a single interface for searching across multiple domains including general web, finance, academic literature, security, legal databases, and code repositories. It exposes tools for single queries, batched parallel searches, domain-specific vertical searches, and full-page HTML extraction as Markdown. Agents can discover available search domains dynamically before querying, making AnySearch a flexible drop-in search skill for any agentic workflow.
Prerequisites
- An MCP-compatible client such as Claude Desktop, Cursor, or OpenCode
- An AnySearch API key from anysearch.com (anonymous access available with reduced rate limits)
- Node.js with npx available (for stdio transport via mcp-remote), or a client that supports Streamable HTTP natively
Obtain an AnySearch API key
Sign up at anysearch.com to get your API key. Anonymous access works without a key but has stricter rate limits.
Choose your transport method
AnySearch supports Streamable HTTP (native in newer clients), stdio via mcp-remote proxy, and SSE via supergateway. Pick the one your MCP client supports.
Configure with Streamable HTTP (preferred for newer clients)
If your client supports Streamable HTTP (e.g. OpenCode or Claude Desktop 2025.6+), point it directly at the AnySearch endpoint.
{
"mcpServers": {
"anysearch": {
"type": "streamable-http",
"url": "https://api.anysearch.com/mcp",
"env": {
"ANYSEARCH_API_KEY": "your-api-key-here"
}
}
}
}Configure with stdio via mcp-remote (for older clients)
For clients that only support stdio, use the mcp-remote proxy to bridge to the AnySearch HTTP endpoint.
{
"mcpServers": {
"anysearch": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://api.anysearch.com/mcp"],
"env": {
"ANYSEARCH_API_KEY": "your-api-key-here"
}
}
}
}Verify available search domains
Once connected, ask your AI assistant to call get_sub_domains to discover which vertical search domains are available and their parameter schemas.
AnySearch Examples
Client configuration
stdio configuration using mcp-remote proxy, compatible with Claude Desktop and most MCP clients. Replace with your actual ANYSEARCH_API_KEY.
{
"mcpServers": {
"anysearch": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://api.anysearch.com/mcp"],
"env": {
"ANYSEARCH_API_KEY": "your-api-key-here"
}
}
}
}Prompts to try
Example prompts that exercise AnySearch's unified search, vertical domains, batch search, and page extraction.
- "Search for the latest news on large language model benchmarks"
- "Run a finance search for Q1 2025 earnings reports from Apple"
- "Find recent academic papers on retrieval-augmented generation"
- "Search for CVEs related to OpenSSH published in the last 30 days"
- "Batch search: find the current Python 3.13 release notes AND the latest NumPy changelog simultaneously"
- "Extract the full content of this page as markdown: https://example.com/article"Troubleshooting AnySearch
Requests return 401 Unauthorized
Check that ANYSEARCH_API_KEY is set correctly in your MCP client config env block. The key must be your actual AnySearch API key, not a placeholder. Anonymous mode works without the key but returns fewer results.
mcp-remote proxy fails to connect
Ensure npx is available and the machine has internet access to reach https://api.anysearch.com/mcp. Run npx -y mcp-remote https://api.anysearch.com/mcp directly in a terminal to see any connection errors.
Vertical domain search returns unexpected results or errors
Call the get_sub_domains tool first to retrieve the list of valid sub-domains and their accepted parameters. Passing an unsupported domain name or incorrect parameter will cause the search to fail.
Frequently Asked Questions about AnySearch
What is AnySearch?
AnySearch is a Model Context Protocol (MCP) server that unified real-time search engine skill for ai agents. It connects AI assistants to external tools and data sources through a standardized interface.
How do I install AnySearch?
Follow the installation instructions on the AnySearch GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with AnySearch?
AnySearch works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is AnySearch free to use?
Yes, AnySearch is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
AnySearch Alternatives — Similar Search & Data Extraction Servers
Looking for alternatives to AnySearch? Here are other popular search & data extraction servers you can use with Claude, Cursor, and VS Code.
TrendRadar
★ 58.0kA real-time hotspot monitoring and news aggregation assistant that provides AI-powered analysis of trending topics across multiple platforms via the Model Context Protocol. It enables users to track news and receive automated notifications through va
Scrapling
★ 52.7k🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
PDF Math Translate
★ 33.9k[EMNLP 2025 Demo] PDF scientific paper translation with preserved formats - 基于 AI 完整保留排版的 PDF 文档全文双语翻译,支持 Google/DeepL/Ollama/OpenAI 等服务,提供 CLI/GUI/MCP/Docker/Zotero
GPT Researcher
★ 27.2kAn autonomous agent that conducts deep research on any data using any LLM providers
Agent Reach
★ 20.1kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
Xiaohongshu
★ 13.7kMCP for xiaohongshu.com
Browse More Search & Data Extraction MCP Servers
Explore all search & data extraction servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up AnySearch in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use AnySearch?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.