R
Replicated Docs MCP
by @Justiceleeg
Hosted MCP server for searching and retrieving Replicated documentation
Created 4/10/2026
Updated about 19 hours ago
README
Repository documentation and setup instructions
replicated-docs-mcp
A hosted MCP server that gives AI agents direct access to search and retrieve Replicated documentation.
Install
claude mcp add replicated-docs --transport http https://replicated-docs-mcp.<account>.workers.dev/mcp
Tools
| Tool | Description |
|------|-------------|
| docs_search(query, limit?) | Search all 708 doc pages by keyword via Algolia |
| docs_get(path) | Fetch a specific doc page as raw markdown |
| docs_topics() | Browse the curated topic index (~80 key topics) |
Development
npm install
npm run dev # Local dev server at http://localhost:8787
npm run deploy # Deploy to Cloudflare Workers
Why this exists
See PROPOSAL.md for the full problem statement. In short: agents can't discover or retrieve Replicated docs through normal web fetching because the content gets summarized/truncated and there's no search capability.
Quick Setup
Installation guide for this server
Install Package (if required)
npx @modelcontextprotocol/server-replicated-docs-mcp
Cursor configuration (mcp.json)
{
"mcpServers": {
"justiceleeg-replicated-docs-mcp": {
"command": "npx",
"args": [
"justiceleeg-replicated-docs-mcp"
]
}
}
}