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:
For DocuMCP Manager (Agent Orchestration):
Restart Claude Desktop and both servers will be available.
Alternative Installation Methods
Using Smithery CLI
Install the server via Smithery CLI:
🚀 Manual Start
1. Clone and Install
2. Build the Servers
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:
Important: Both servers should use the same vector database configuration to enable shared access.
4. Start Required Services (if using external providers)
For Qdrant:
For ChromaDB:
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=lance LANCE_PATH=~/lanceDB |
ChromaDB | Simple vector database with web UI | VECTOR_DB_PROVIDER=chroma CHROMA_URL=http://localhost:8000 |
Qdrant | Production-grade vector database | VECTOR_DB_PROVIDER=qdrant QDRANT_URL=http://localhost:6333 |
Embedding Providers
Provider | Description | Configuration |
---|---|---|
Built-in | Uses all-MiniLM-L6-v2 model (default) | EMBEDDING_PROVIDER=buildin EMBEDDING_MODEL=all-MiniLM-L6-v2 EMBEDDING_DIMENSION=384 |
Ollama | Use any Ollama model | EMBEDDING_PROVIDER=ollama EMBEDDING_MODEL=bge-m3:latest EMBEDDING_DIMENSION=1024 OLLAMA_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 ❤️
This server cannot be installed
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
MCP 服务器使 Claude 能够使用向量嵌入和语义搜索来生成、搜索和管理代码库文档,提供用于创建用户指南、技术文档、代码说明和架构图的工具。
Related MCP Servers
- AsecurityAlicenseAqualityAn MCP server that implements Claude Code-like functionality, allowing the AI to analyze codebases, modify files, execute commands, and manage projects through direct file system interactions.Last updated -15247PythonMIT License
- -securityFlicense-qualityAn MCP server that integrates with Claude to provide smart documentation search capabilities across multiple AI/ML libraries, allowing users to retrieve and process technical information through natural language queries.Last updated -Python
- -securityAlicense-qualityA Claude Desktop MCP server that provides knowledge base search and chat functionality for Volcengine knowledge bases, allowing users to search and chat with their external knowledge repositories.Last updated -PythonMIT License
- -securityAlicense-qualityAn MCP server that automatically manages and organizes project documentation using the document reference pattern, keeping CLAUDE.md files clean and under 500 lines while maintaining full context for AI assistants.Last updated -PythonMIT License