Documentation MCP Server

Documentation MCP Server

Generates professional documentation for multi-language projects with deep code analysis, supporting frameworks like Docusaurus, MkDocs, and Sphinx, including API docs, PDF export, and OpenAPI specifications.

Category
访问服务器

README

📚 Documentation MCP Server

A Model Context Protocol (MCP) Server for generating professional documentation with support for multiple frameworks.

✨ Features

  • 🔍 Deep Code Analysis - AST-based Multi-Language Analysis
    • TypeScript/JavaScript: TypeScript Compiler API
    • Python: Native Python AST module
    • Go: Go parser & AST
    • PHP: Regex-based analysis + PHP 8+ Features
    • Extracts classes, functions, interfaces, methods, properties
    • PHP 8+: Enums, Traits, Attributes
    • Captures JSDoc/Docstrings/Go Doc/PHPDoc and calculates documentation coverage
    • Analyzes imports/exports and module dependencies
  • 🌍 Multi-Language Projects - Automatic detection and parallel analysis of multiple languages
  • 📊 Project Analysis - Automatic code analysis for TypeScript, JavaScript, Python, Go, PHP
  • 🏗️ Structure Generation - Creates complete documentation scaffolds
  • ✍️ Page Editor - Creates and edits individual documentation pages
  • 📖 API Documentation - Generates API docs from code comments
  • 🌐 Static Site Builder - Builds static websites for hosting
  • 📄 PDF Export - Converts documentation to PDF
  • 👀 Live Preview - Local development server

🛠️ Supported Frameworks

  • Docusaurus (React-based, modern, various templates)
  • MkDocs (Python-based, Markdown-focused, simple)
  • Sphinx (Python, very powerful, for complex projects)

🚀 Quick Start

  1. Install globally:

    npm install -g documentation-mcp-server
    
  2. Configure in Claude Desktop (see SETUP.md):

    {
      "mcpServers": {
        "docs": {
          "command": "npx",
          "args": ["-y", "documentation-mcp-server"]
        }
      }
    }
    
  3. Start using the documentation tools in Claude!

📦 Tools

docs_analyze_project

Analyzes project structure and performs deep code analysis.

Parameters:

  • projectPath (string, required) - Path to project
  • language (enum, optional) - Programming language (typescript, javascript, python, go, rust, java, csharp)
  • deep (boolean, optional, default: true) - Enables deep code analysis

Deep Analysis Features:

  • 📦 Extracts Classes/Structs, Interfaces, Functions, Enums, Type Aliases
  • 🔍 Captures Methods, Properties, Constructors with complete details
  • 📝 Analyzes JSDoc/Docstrings/Go Doc and calculates documentation coverage
  • 🔗 Tracks Imports/Exports and Module Dependencies
  • 📊 Generates summary statistics
  • 🎯 Multi-Language Support:
    • ✅ TypeScript/JavaScript (TypeScript Compiler API)
    • ✅ Python (Native Python AST)
    • ✅ Go (go/parser & go/ast)
    • ✅ PHP v2 (nikic/php-parser AST) - New! 100% accurate
      • Namespaces & Use-Statements
      • Union/Intersection/Nullable Types
      • Enums, Traits, Attributes (PHP 8+)
      • Framework Detection:
        • CodeIgniter 3/4 (Controller, Model)
        • Laravel (Illuminate*)
        • Symfony (Symfony*)
        • MVC Pattern Recognition
      • Route Detection: 🚀
        • Convention-based: /controller/method/{param}
        • Attribute-based: #[Get('/')], #[Post('/')]
        • HTTP Methods: GET, POST, PUT, PATCH, DELETE
        • Parameter Types & Required/Optional Status
      • Middleware Detection: 🔒
        • Laravel: #[Middleware('auth')]
        • Symfony: #[IsGranted('ROLE_ADMIN')]
        • CodeIgniter 4: #[Filter('auth')]
        • CodeIgniter 3: @middleware (Docblocks)
        • Class-Level & Method-Level
        • Middleware Parameters
      • OpenAPI 3.0 Export: 📋
        • Auto-generates Swagger/OpenAPI specs
        • Routes → Paths conversion
        • Middleware → Security Schemes
        • JSON & YAML format support
    • ✅ PHP v1 (Regex-based) - Fallback
    • 🌍 Automatic Multi-Language Detection
    • 🔜 Rust, Java, C# (planned)

Example Response:

{
  "deepAnalysis": {
    "summary": {
      "totalFiles": 11,
      "totalClasses": 2,
      "totalInterfaces": 23,
      "totalFunctions": 16,
      "overallDocCoverage": 3.17
    }
  }
}

docs_generate_structure

Generates documentation scaffold.

Parameters:

  • projectPath (string, required) - Path to project
  • framework (enum, required) - docusaurus | mkdocs | sphinx
  • template (string, optional) - Template name
  • outputPath (string, optional) - Output path (default: ./docs)

docs_create_page

Creates or edits documentation page.

Parameters:

  • docsPath (string, required) - Path to docs
  • pagePath (string, required) - Relative path to page
  • title (string, required) - Page title
  • content (string, required) - Markdown content

docs_generate_api

Generates API documentation from code.

Parameters:

  • projectPath (string, required) - Path to source code
  • outputPath (string, required) - Output path
  • language (enum, required) - Programming language

docs_build_static

Builds static website.

Parameters:

  • docsPath (string, required) - Path to docs
  • framework (enum, required) - Framework
  • outputPath (string, optional) - Output path (default: ./build)

docs_export_pdf

Exports documentation as PDF.

Parameters:

  • docsPath (string, required) - Path to docs
  • outputPath (string, required) - PDF output path
  • includePages (array, optional) - Specific pages

docs_preview

Starts local dev server.

Parameters:

  • docsPath (string, required) - Path to docs
  • framework (enum, required) - Framework
  • port (number, optional) - Port (default: 3000/8000)

docs_generate_openapi

Generates OpenAPI 3.0 specification from PHP code.

Parameters:

  • projectPath (string, required) - PHP project path
  • outputPath (string, optional) - Output path (default: ./openapi.json)
  • format (enum, optional) - json | yaml (default: json)
  • title (string, optional) - API title
  • version (string, optional) - API version
  • serverUrl (string, optional) - API server URL

docs_generate_sales_docs 🎯 NEW!

Generates professional, sales-ready documentation for CodeCanyon, ThemeForest, etc.

Parameters:

  • projectPath (string, required) - PHP project path
  • outputDir (string, optional) - Output directory (default: ./sales-docs)
  • productName (string, required) - Product name
  • productVersion (string, optional) - Version (default: 1.0.0)
  • author (string, required) - Author/Company
  • description (string, required) - Product description
  • price (string, optional) - Price (e.g., "$49")
  • demoUrl (string, optional) - Live demo URL
  • supportEmail (string, optional) - Support email
  • features (array, optional) - List of key features

Generated Files:

  1. README.md (2.5 KB) - Product overview with features, statistics, requirements
  2. INSTALLATION.md (3.2 KB) - Step-by-step setup guide
  3. API_REFERENCE.md (24.2 KB) - Complete API documentation
  4. CONFIGURATION.md (2.1 KB) - Environment variables, security
  5. EXAMPLES.md (4.0 KB) - Code examples (JS, PHP, Python)
  6. FAQ.md (2.2 KB) - Frequently asked questions
  7. CHANGELOG.md (0.9 KB) - Version history
  8. COMPLETE_DOCUMENTATION.md (39.0 KB) - All-in-one for PDF

Total: ~78 KB professional documentation!

🏗️ Architecture

src/
├── index.ts                    # MCP Server main file
├── core/                       # Core modules for deep analysis
│   ├── types.ts               # Type definitions for all languages
│   └── analyzer.ts            # Abstract base class & factory
├── analyzers/                  # Language-specific analyzers
│   ├── typescript.ts          # TypeScript/JavaScript (TS Compiler API)
│   ├── python.ts              # Python wrapper (subprocess)
│   ├── go.ts                  # Go wrapper (subprocess)
│   └── helpers/               # Native language parsers
│       ├── python_analyzer.py # Python AST parser
│       └── go_analyzer.go     # Go AST parser
└── tools/                      # MCP tool implementations
    ├── analyzeProject.ts      # Deep analysis integration
    ├── generateStructure.ts
    ├── createPage.ts
    ├── generateApi.ts
    ├── buildStatic.ts
    ├── exportPdf.ts
    └── preview.ts

🔬 Deep Analysis Pipeline

  1. File Scanning - Scans project directory
  2. Language Detection - Detects dominant programming language
  3. Analyzer Selection - Selects appropriate AST parser (Factory Pattern)
  4. AST Parsing - Parses code files with language-specific parser
    • TypeScript: TS Compiler API (in-process)
    • Python: Python AST module (subprocess)
    • Go: go/parser & go/ast (subprocess)
  5. Symbol Extraction - Extracts all code symbols (Classes, Functions, etc.)
  6. Documentation Analysis - Captures documentation comments
  7. Summary Generation - Calculates statistics and coverage

📝 License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选