An MCP (Model Context Protocol) server that exposes documentation sites content for AI assistants. This server scrapes and indexes GitBook and other websites documentation, making it searchable and accessible through MCP tools.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"gitbook": {
"env": {
"GITBOOK_URL": "https://docs.yoursite.com"
},
"args": [
"/absolute/path/to/dist/index.js"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A high-performance MCP (Model Context Protocol) server that transforms any documentation website into an AI-accessible knowledge base. Originally built for GitBook but works with Vercel docs, Next.js sites, Docusaurus, and many other documentation platforms. Features instant startup, intelligent caching, and automatic domain detection.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'echo' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked echo against OSV.dev.
Click any tool to inspect its schema.
explain_sectionGenerate comprehensive tutorials
summarize_pageCreate concise summaries
compare_sectionsCompare documentation sections
api_referenceFormat as API documentation
quick_start_guideGenerate quick start guides
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education / search
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
Multi-engine MCP server, CLI, and local daemon for agent web search and content retrieval — skill-guided workflows, no API keys.
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
MCP Security Weekly
Get CVE alerts and security updates for Mcpbook and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A high-performance MCP (Model Context Protocol) server that transforms any documentation website into an AI-accessible knowledge base. Originally built for GitBook but works with Vercel docs, Next.js sites, Docusaurus, and many other documentation platforms. Features instant startup, intelligent caching, and automatic domain detection.
💡 Recommended: Use the interactive creator for the best experience!
# Clone this repo (once)
git clone https://github.com/tcsenpai/mcpbook/
cd mcpbook
# Build the UI
npm run ui:build
# Start the web interface
npm run ui
The Web UI provides:
# Clone this repo (once)
git clone https://github.com/tcsenpai/mcpbook/
cd mcpbook
# Create MCP server for any documentation site instantly
npm exec create-gitbook-mcp
That's it! 🎉 The interactive wizard will:
~/.config/mcpbooks/servers/[name])your-server-name command)Install and Configure
npm install
echo "GITBOOK_URL=https://docs.yoursite.com" > .env
Build with Auto-Detection
npm run build # Automatically detects and configures your domain
Start Server
npm start # Instant startup with SQLite cache
Test with MCP Inspector
npx @modelcontextprotocol/inspector node dist/index.js
git clone <repository>
cd mcpbook
npm install
npm run build
npm start
npm install -g .
# Then use the binary name from package.json
your-mcp-server-name
{
"mcpServers": {
"gitbook": {
"command": "node",
"args": ["/absolute/path/to/dist/index.js"],
"env": {
"GITBOOK_URL": "https://docs.yoursite.com"
}
}
}
}
Config file locations:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\\Claude\\claude_desktop_config.jsonnpm run start:http # S
... [View full README on GitHub](https://github.com/tcsenpai/mcpbook#readme)