July 13, 2026 · 6 min read
The most common question teams ask when they hear about MCP for documentation: "Do we need to migrate to a new platform?"
The answer is no. MCP is a protocol, not a platform. You can add it to any existing docs site — Notion, GitBook, Mintlify, Readme.io, Docusaurus, a custom Next.js site, even a static HTML site — without changing how you write, publish, or host your content.
Here's the full picture of your options, from zero-code to full DIY.
A hosted MCP service crawls your existing docs site and exposes the content as an MCP server. You don't change your docs pipeline at all — the service reads your site the same way a browser would, indexes it, and gives you an MCP endpoint.
How it works with AgentReady:
__NEXT_DATA__ extraction → headless browser for JS-rendered pages)// Claude Desktop — ~/.claude/claude_desktop_config.json
{
"mcpServers": {
"agentready": {
"command": "npx",
"args": ["-y", "@agentreadyweb/mcp"]
}
}
}
// Then ask Claude:
// "What does docs.yourproduct.com say about authentication?"
// → AgentReady returns a cited, multi-page answerWhat it handles that a plain web scraper won't:
refresh_site after a deploy to re-index without re-submittingBest for: any team that wants MCP today without an engineering sprint.
Before crawling your full site, add an llms.txt file at your domain root. This is a plain-text index that tells AI crawlers exactly which pages to read and in what order — the same concept as robots.txt but for LLMs.
# https://docs.yourproduct.com/llms.txt
# AgentReady reads this first to discover pages
> YourProduct Documentation
## Getting Started
- [Quickstart](https://docs.yourproduct.com/quickstart): Get up in 5 minutes
- [Authentication](https://docs.yourproduct.com/auth): API keys and OAuth
- [SDKs](https://docs.yourproduct.com/sdks): Official client libraries
## API Reference
- [REST API](https://docs.yourproduct.com/api): Full endpoint reference
- [Webhooks](https://docs.yourproduct.com/webhooks): Event types and payloadsAgentReady's crawler checks for llms.txt first. If it finds one, it crawls exactly those pages in priority order, which produces faster indexing and better answer quality than a generic sitemap crawl.
This is not a substitute for MCP — it's a signal layer that improves how well MCP services (and any AI crawler) can read your site. Add it alongside either of the other options.
If you already have an Algolia, Meilisearch, or Elasticsearch index powering your docs search, you can wrap it in a lightweight MCP server without re-indexing anything.
// Thin MCP wrapper over existing Algolia index
// No re-crawling, no new infrastructure — just a new interface
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'
import algoliasearch from 'algoliasearch'
const client = algoliasearch(process.env.ALGOLIA_APP_ID!, process.env.ALGOLIA_API_KEY!)
const index = client.initIndex('docs')
const server = new McpServer({ name: 'your-docs', version: '1.0.0' })
server.tool(
'search_docs',
'Search the documentation. Use this to answer any question about the product.',
{ query: { type: 'string' as const } },
async ({ query }) => {
const results = await index.search(query, { hitsPerPage: 5 })
const text = results.hits
.map((h: Record<string, unknown>) => `[${h.title}](${h.url})\n${h.content}`)
.join('\n\n')
return { content: [{ type: 'text' as const, text }] }
}
)
await server.connect(new StdioServerTransport())Trade-off: keyword search quality. Your existing Algolia index finds exact matches well but struggles with semantic queries like "how do I handle rate limit errors gracefully?". A vector-based approach (like AgentReady's RAG) handles those better. Use this option if you already have high-quality search and just want MCP discoverability quickly.
Build your own crawler, chunker, vector store, and MCP server. This gives you full control but takes 2–4 weeks and ongoing maintenance. It's the right call for enterprises with compliance requirements or highly specific retrieval needs.
The full guide is in How to Build a Documentation Chatbot with MCP.
Regardless of which option you choose, you keep:
MCP sits alongside your existing setup as a new access layer. It doesn't replace anything — it adds a queryable interface for AI agents that didn't exist before.
Add MCP to your docs in under an hour
AgentReady crawls your existing docs site — any platform, any stack — and exposes it as an MCP server. No migration, no rebuild. Submit your URL and start answering agent queries immediately.
Try it free →