AnySearch
Unified real-time search engine skill for AI agents.
https://anysearch.run.tools
How to connect
-
Smithery (hosted)
1. Open https://smithery.ai/servers/anysearch-ai/anysearch 2. Click Connect and complete OAuth in your MCP client (Claude, Cursor, VS Code, etc.) 3. MCP endpoint: https://anysearch.run.tools
Tools (4)
-
batch_searchRun multiple searches in parallel and return all results merged into one response. ## When to use Use batch_search instead of multiple sequential search calls when you have 2–5 independent queries. This saves context window space by returning all results in a single tool call. ## Constraints - Maximum 5 queries per call - Each query item has the same structure as the search tool parameters - Queries run in parallel; a single query failure does not block others ## Example Instead of: search(qu
-
extractFetch a URL and return its full content as clean Markdown. ## When to use — call extract after search whenever: - The search snippet is too short or truncated to answer the question - User asks to 'read', 'open', 'summarize', or 'get details from' a specific URL - You need to verify a specific claim, statistic, or fact from the original source - The result points to a full article, report, documentation page, or paper worth reading in full - The answer requires data visible only in the page bod
-
list_domainsCall this before search to get the sub-domain catalog and MANDATORY query format rules for a given domain. ## When to call — pick the domain that matches what the user is asking about: finance → stocks, ticker, ETF, forex, exchange rate, currency, commodities, oil/gold price, crypto, Bitcoin, earnings, SEC filing, IPO, bond yield, financial news academic → paper, research, journal, thesis, citation, DOI, abstract, peer review, arxiv, pubmed, scholar, literature, study, dataset ip
-
searchExecute a search and return ranked Markdown results (title, URL, snippet). ## Two modes ### Mode 1 — General web search (no list_domains needed) Omit domain and sub_domain entirely. Use when the query is open-ended and does not target a specific structured data source. Example: search(query="what is quantum computing") ### Mode 2 — Vertical search (call list_domains first) Use when the query targets a specific domain: stocks, patents, flights, CVEs, weather, academic papers, etc. Steps: 1. Ca