
DocuMCP (RAG Documentation Server)
Generates intelligent documentation for codebases using RAG and semantic search, with optional multi-agent orchestration for large-scale documentation workflows.
RAG-enabled documentation server that integrates with vector databases to provide semantic search capabilities for code, documentation, and diagrams without data leaving your environment.
What it does
- Generate documentation from codebases automatically
- Search code and docs using semantic similarity
- Create and merge architectural diagrams
- Spawn multiple Claude agents for parallel processing
- Store embeddings in vector databases locally
- Track documentation generation costs and metrics
Best for
About DocuMCP (RAG Documentation Server)
DocuMCP (RAG Documentation Server) is a community-built MCP server published by yannicktm that provides AI assistants with tools and capabilities via the Model Context Protocol. DocuMCP: RAG documentation server with on-prem semantic search for code, docs, and diagrams ā integrates vector DBs with It is categorized under ai ml, developer tools.
How to install
You can install DocuMCP (RAG Documentation Server) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
License
DocuMCP (RAG Documentation Server) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
DocuMCP
š¤ A comprehensive MCP system for intelligent code documentation generation with RAG capabilities and multi-agent orchestration
DocuMCP consists of two complementary MCP servers:
- DocuMCP Server: Core documentation generation with vector embeddings and semantic search
- DocuMCP Manager: Agent orchestration for parallel documentation workflows using multiple Claude Code sub-agents
Together, they enable Claude to generate, search, and manage documentation for your codebase at any scale, from single files to entire enterprise applications.
⨠Features
Core Documentation Features
- š Generate and update documentation based on your codebase
- š Semantic search across code, documentation, and diagrams
- š Create and merge architectural diagrams
- š Generate user guides
- š¾ Support for multiple vector databases (LanceDB, ChromaDB, Qdrant)
- š§ Flexible embedding providers (built-in or Ollama)
Multi-Agent Orchestration (Manager Server)
- š¤ Spawn multiple Claude Code sub-agents for parallel processing
- š Monitor agent status and retrieve results
- š Shared vector database across all agents
- ā” Scale documentation generation for large codebases
- š° Track costs and performance metrics
š Quick Start
Installation via NPX (Recommended)
The easiest way to use DocuMCP is to configure Claude Desktop with the published npm package:
Add the following to your Claude Desktop configuration:
- MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%/Claude/claude_desktop_config.json
For Core DocuMCP Server:
{
"mcpServers": {
"docu-mcp": {
"command": "npx",
"args": ["-y", "@myjungle/docu-mcp-server"]
}
}
}
For DocuMCP Manager (Agent Orchestration):
{
"mcpServers": {
"docu-mcp-manager": {
"command": "npx",
"args": ["-y", "@myjungle/docu-mcp-manager"]
}
}
}
Restart Claude Desktop and both servers will be available.
Alternative Installation Methods
Using Smithery CLI
Install the server via Smithery CLI:
# Install Smithery CLI if you don't have it
npm install -g @smithery/cli
# Then install the Docu MCP server
npx -y @smithery/cli@latest install @YannickTM/docu-mcp --client claude
š Manual Start
1. Clone and Install
git clone https://github.com/YannickTM/docu-mcp
cd docu-mcp
npm install
2. Build the Servers
# Build DocuMCP Server
cd mcp
npm run build
cd ..
# Build DocuMCP Manager
cd manager
npm run build
cd ..
3. Advanced Configuration
Add the following to your Claude Desktop configuration:
- MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%/Claude/claude_desktop_config.json
Configuration for Both Servers:
{
"mcpServers": {
"docu-mcp": {
"command": "node",
"env": {
"VECTOR_DB_PROVIDER": "qdrant",
"QDRANT_URL": "http://localhost:6333",
"EMBEDDING_PROVIDER": "ollama",
"EMBEDDING_MODEL": "bge-m3:latest",
"EMBEDDING_DIMENSION": "1024",
"OLLAMA_URL": "http://localhost:11434"
},
"args": ["/absolute/path/to/DocuMCP/mcp/dist/index.js"]
},
"docu-mcp-manager": {
"command": "node",
"env": {
"VECTOR_DB_PROVIDER": "qdrant",
"QDRANT_URL": "http://localhost:6333",
"EMBEDDING_PROVIDER": "ollama",
"EMBEDDING_MODEL": "bge-m3:latest",
"EMBEDDING_DIMENSION": "1024",
"OLLAMA_URL": "http://localhost:11434",
"SUB_AGENT_MODEL": "claude-3-7-sonnet-latest"
},
"args": ["/absolute/path/to/DocuMCP/manager/dist/index.js"]
}
}
}
Important: Both servers should use the same vector database configuration to enable shared access.
4. Start Required Services (if using external providers)
For Qdrant:
cd qdrant
npm run start
For ChromaDB:
cd chromadb
npm run start
5. Restart Claude Desktop
Restart Claude Desktop to load the new configuration.
š ļø Configuration Options
Vector Database Providers
| Provider | Description | Configuration |
|---|---|---|
| LanceDB | File-based local database (default) | VECTOR_DB_PROVIDER=lanceLANCE_PATH=~/lanceDB |
| ChromaDB | Simple vector database with web UI | VECTOR_DB_PROVIDER=chromaCHROMA_URL=http://localhost:8000 |
| Qdrant | Production-grade vector database | VECTOR_DB_PROVIDER=qdrantQDRANT_URL=http://localhost:6333 |
Embedding Providers
| Provider | Description | Configuration |
|---|---|---|
| Built-in | Uses all-MiniLM-L6-v2 model (default) | EMBEDDING_PROVIDER=buildinEMBEDDING_MODEL=all-MiniLM-L6-v2EMBEDDING_DIMENSION=384 |
| Ollama | Use any Ollama model | EMBEDDING_PROVIDER=ollamaEMBEDDING_MODEL=bge-m3:latestEMBEDDING_DIMENSION=1024OLLAMA_URL=http://localhost:11434 |
š§ Available Tools
DocuMCP Server Tools
- š File Operations:
read_file,write_file,create_directory,read_directory - š Search Tools:
search_codebase,search_documentation,search_diagram,search_user_guide - š Documentation:
generate_documentation,generate_user_guide,explain_code - š Diagrams:
generate_diagram,merge_diagram - šļø Indexing:
index_file,index_directory - š Merging:
merge_documentation
DocuMCP Manager Tools (includes all above plus):
- š¤ Agent Orchestration:
spawn_agent: Create Claude Code sub-agents for documentation tasksmanage_agent: Monitor, control, and retrieve results from agents
š Requirements
- Node.js 20.11.24+
- Claude Desktop
- (Optional) Docker for running external vector databases
š¤ Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Made with ā¤ļø
Alternatives
Related Skills
Browse all skillsUI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.
Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat".
Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.
Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.
Expert AWS Cloud Advisor for architecture design, security review, and implementation guidance. Leverages AWS MCP tools for accurate, documentation-backed answers. Use when user asks about AWS architecture, security, service selection, migrations, troubleshooting, or learning AWS. Triggers on AWS, Lambda, S3, EC2, ECS, EKS, DynamoDB, RDS, CloudFormation, CDK, Terraform, Serverless, SAM, IAM, VPC, API Gateway, or any AWS service.
Prepares codebases for security review using Trail of Bits' checklist. Helps set review goals, runs static analysis tools, increases test coverage, removes dead code, ensures accessibility, and generates documentation (flowcharts, user stories, inline comments).