JUHE API Marketplace
YannickTM avatar
MCP Server

DocuMCP

An MCP server that enables Claude to generate, search, and manage documentation for codebases using vector embeddings and semantic search, providing tools for creating user guides, technical documentation, code explanations, and architectural diagrams.

6
GitHub Stars
11/22/2025
Last Updated
MCP Server Configuration
1{
2 "name": "docu-mcp",
3 "command": "npx",
4 "args": [
5 "-y",
6 "@myjungle/docu-mcp-server"
7 ]
8}
JSON8 lines
  1. Home
  2. MCP Servers
  3. docu-mcp

README Documentation

DocuMCP

šŸ¤– A comprehensive MCP system for intelligent code documentation generation with RAG capabilities and multi-agent orchestration

DocuMCP consists of two complementary MCP servers:

  1. DocuMCP Server: Core documentation generation with vector embeddings and semantic search
  2. 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

ProviderDescriptionConfiguration
LanceDBFile-based local database (default)VECTOR_DB_PROVIDER=lance
LANCE_PATH=~/lanceDB
ChromaDBSimple vector database with web UIVECTOR_DB_PROVIDER=chroma
CHROMA_URL=http://localhost:8000
QdrantProduction-grade vector databaseVECTOR_DB_PROVIDER=qdrant
QDRANT_URL=http://localhost:6333

Embedding Providers

ProviderDescriptionConfiguration
Built-inUses all-MiniLM-L6-v2 model (default)EMBEDDING_PROVIDER=buildin
EMBEDDING_MODEL=all-MiniLM-L6-v2
EMBEDDING_DIMENSION=384
OllamaUse any Ollama modelEMBEDDING_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 tasks
    • manage_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 ā¤ļø

Quick Install

Quick Actions

View on GitHubView All Servers

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source

Boost your projects with Wisdom Gate LLM API

Supporting GPT-5, Claude-4, DeepSeek v3, Gemini and more.

Enjoy a free trial and save 20%+ compared to official pricing.

Learn More
JUHE API Marketplace

Accelerate development, innovate faster, and transform your business with our comprehensive API ecosystem.

JUHE API VS

  • vs. RapidAPI
  • vs. API Layer
  • API Platforms 2025
  • API Marketplaces 2025
  • Best Alternatives to RapidAPI

For Developers

  • Console
  • Collections
  • Documentation
  • MCP Servers
  • Free APIs
  • Temp Mail Demo

Product

  • Browse APIs
  • Suggest an API
  • Wisdom Gate LLM
  • Global SMS Messaging
  • Temp Mail API

Company

  • What's New
  • Welcome
  • About Us
  • Contact Support
  • Terms of Service
  • Privacy Policy
Featured on Startup FameFeatured on Twelve ToolsFazier badgeJuheAPI Marketplace - Connect smarter, beyond APIs | Product Huntai tools code.marketDang.ai
Copyright Ā© 2025 - All rights reserved