Self-hosted MCP web research that searches, crawls, reranks, and returns compact cited evidence.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by TinySearch.
Spend tokens on answers, not webpages.
TinySearch searches, crawls, and reranks the web locally, then gives your agent only the evidence worth putting in its context.
Documentation Β· Quick start Β· Python Β· Discord
TinySearch is a self-hosted web-research tool for AI agents. It searches the web, reads the best pages, removes low-value content, and returns compact evidence with source URLs.
Your model receives the useful passages instead of paying to process entire webpages.
TinySearch is part of TinySuite, a suite of focused tools designed to make agentic operations cheaper by minimizing token usage through smart retrieval, selection, and context-management techniques.
| Tier | Use it when | Entry point | Search backend |
|---|---|---|---|
| 1. Python library | You are building with TinySuite or Python | pip install tinysuite-search | DDGS |
| 2. One-command MCP | An MCP client should launch TinySearch for you | uvx --from "tinysuite-search[server]" tinysearch | DDGS |
| 3. Docker + SearXNG | You want the full self-hosted stack and HTTP MCP | docker compose ... up -d | Bundled SearXNG |
Tiers 1 and 2 need no search service. Tier 3 adds a dedicated SearXNG service, persistent model storage, and a network MCP endpoint. See the installation guide for the Docker setup.
A search result is not yet useful evidence. Agents often have to open several pages, ingest navigation and boilerplate, and spend paid input tokens deciding which passages matter.
TinySearch moves that work in front of the model:
That lowers cost in three ways:
Search broadly. Read locally. Pay the model only for the evidence that matters.
This is retrieval, not summarization: TinySearch selects the passages worth keeping with local BM25 and embedding rerank, it doesn't run a model over the page to rewrite or condense it. Every returned chunk is the original page text, unedited, so what you cite is what the page actually said. That keeps the pipeline fast and free to run locally, at the cost of not compacting as aggressively as a dedicated reduction model could. A learned reduction step is a direction we may explore later; it isn't part of TinySearch today.
Actual savings depend on the pages, evidence limits, client model, and provider pricing. TinySearch reduces the web content sent to the model; it does not control what the client does with that evidence afterward.
The cost panel uses an illustrative $3.00 per million input-token rate and excludes search, crawling, model output, and downstream agent use.
The naive baseline isn't a strawman product, it's the same pages TinySearch
crawled for each query, fed to the model unfiltered, the way a generic
"search, then fetch the page" tool (a plain web-search-plus-fetch loop, the
kind built into most coding agents) would. Measured against the current
recommended flow (search then scrape_urls) and counted on the actual MCP
tool-result text, TinySearch's primary interface. Reproduce or rerun it
yourself:
With uv installed, add TinySearch to any MCP
client:
The client launches TinySearch over stdio when it needs it. No repository clone, hosted account, or paid search key is required.
Fast search starts without Chromium or an embedding model. The first scrape
initializes Chromium; focused scraping also initializes the configured
embedding model. Pre-warm both ahead of time if you will use those workflows:
The MCP and FastAPI servers keep the scraper browser warm between nearby
requests, then close it after browser_idle_shutdown_seconds. Direct Python
calls retain their short-lived, caller-owned lifecycle.
Prefer Docker, a remote MCP endpoint, or a source checkout? Follow the installation guide.
| Tool | Use it when |
|---|---|
search(items) | You need fast, backend-ordered discovery without crawling or reranking; batch independent subquestions when useful |
scrape_urls(items) | You know one to five pages; each item may use * for its configured clean page-order token budget |
browser_navigate / browser_act | A page needs interaction before it can be read; see Browser automation |
get_current_datetime() | A question depends on the current date or time |
TinySearch deliberately stays focused. It is a retrieval layer, not another agent, chat interface, hosted search product, or permanent web index.
See the complete MCP tool reference for parameters and response contracts.
TinySearch does not spend another model call writing the final answer. The
recommended flow is search for lightweight discovery, then scrape_urls for
the pages worth reading.
Search returns structured JSON. Use one item for a simple lookup; add multiple
items only for independent subquestions or source strategies. domains is a
hard positive source restriction and accepts a domain plus its subdomains:
Each search item reports its own results and compact backend attempts. A zero
result response is distinct from a blocked, unavailable, or invalid backend.
scrape_urls returns selected Markdown evidence and separate related-link
navigation candidates, each with independent configured token ceilings.
MCP still uses its standard JSON-RPC transport envelope, including
protocol-level errors and optional structuredContent. Python and FastAPI keep
their structured JSON contracts for applications that need to store, inspect,
or transform the evidence.
search returns backend-ordered titles, URLs, previews, upstream dates, and
backend outcomes without starting Chromium or an embedding model.scrape_urls reads one to five known pages concurrently. Omit an item's
query or use "*" to keep clean Markdown in page order within the
configured token budget.browser_* tools step in only when scrape_urls can't reach the
content because it needs interaction. See
Browser automation.TinySearch also works as a regular Python package:
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/marcellm01-tinysearch)<a href="https://allmcps.com/mcp/marcellm01-tinysearch"><img src="https://allmcps.com/api/badge/marcellm01-tinysearch?style=directory" alt="TinySearch on AllMCPs" /></a>