rabbytte-mcp
OfficialClick on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@rabbytte-mcpask what the index knows about urban gardening"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
rabbytte-mcp
Search Rabbytte from Claude, Cursor, or any MCP-compatible assistant.
Rabbytte is a small, human-curated search engine. Every site in the index was submitted by a person and approved by a person. No crawler, no SEO spam, no machine-generated filler. That makes it useful grounding data: when an assistant searches Rabbytte, every result is a site a human already vetted.
The whole index is free to use. No API key, no signup.
Install
You need Node.js 18 or newer. The server is published on npm and runs with npx, so there is nothing to clone or build.
Claude Desktop
Add this to claude_desktop_config.json (Claude → Settings → Developer → Edit Config):
{
"mcpServers": {
"rabbytte": {
"command": "npx",
"args": ["-y", "rabbytte-mcp"]
}
}
}Restart Claude Desktop. You can then ask things like "search Rabbytte for independent music blogs" or "ask Rabbytte what it knows about self-storage in Canyon Lake."
Claude Code
claude mcp add rabbytte -- npx -y rabbytte-mcpCursor
Add the same block to .cursor/mcp.json in your project, or to ~/.cursor/mcp.json for all projects:
{
"mcpServers": {
"rabbytte": {
"command": "npx",
"args": ["-y", "rabbytte-mcp"]
}
}
}Anything else that speaks MCP
The server uses stdio transport. Point your client at npx -y rabbytte-mcp and it will work.
Related MCP server: magpie-search
Tools
Tool | What it does |
| Full-text search over the curated index. Returns titles, URLs, descriptions, tags, and addresses where known. Accepts |
| Answers a natural-language |
Configuration
Variable | Default | Purpose |
|
| Point the server at a different Rabbytte instance. |
The plain HTTP API
If you'd rather not use MCP, the same index is available over HTTP:
GET https://rabbytte.com/api/search?q=...GET https://rabbytte.com/api/ask?q=...
Docs and an OpenAPI spec are at rabbytte.com/api-docs. There is also an llms.txt.
Submitting a site
Know a site that belongs in a hand-picked index? Submit it. A person reads every submission.
License
MIT. See LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.
Collaborative, cache-first web search for agents — cited answers from a shared live-web pool.
Agent-native search engine with live web research optimized for AI agents.
The best web search for your AI Agent
Related MCP Servers
- AlicenseAqualityAmaintenanceWeb search (embedded SearXNG), content extraction, and library docs indexing with hybrid search. No API keys required.61,270 PyPI17Apache 2.0
- AlicenseAqualityAmaintenanceFederated, local-first search for AI agents: one query fans across transcripts, files, a knowledge graph, a vector store, the live web, and YouTube, fused by trust-weighted RRF into one ranked answer. Five modes (grep/lexical/semantic/hybrid/rerank), runs entirely on your machine over MCP.628Apache 2.0
- AlicenseNot gradedqualityBmaintenanceEnables private, offline semantic search across local files (documents, images, videos) using OCR and vector search, and optionally performs web research with cited sources.AGPL 3.0
- AlicenseAqualityCmaintenanceEnables local-first hybrid knowledge retrieval from authorized Markdown and plain-text files, combining full-text and vector search with reranking and traceable source references via a single search tool.1MIT