MCP Docs Tools

by osok

368 downloads
Not rated
GitHub

About

this is a MCP server that create uml text based class diagrams, project tree structure and a list of modules anf functions in the project to assist cursor in understanding the project.

Details

Author
osok
Downloads
368
Categories
Knowledge Base

- Three focused tools: UML class diagrams, directory trees, and module function docs
- Zero configuration – works out of the box with sensible defaults
- Smart exclusions automatically filter cache, build, and IDE files
- Captures type hints, decorators, docstrings, and inheritance relationships
- Hybrid Node.js + Python architecture for reliable AST parsing
- Seamless integration with AI assistants via MCP protocol

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name MCP Docs Tools
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install by cloning the repository and running npm install, or install globally with npm install -g git+https://github.com/your-username/mcp-docs-tools.git. Start the server with mcp-docs-tools or npm start to expose three tools via MCP. Configure as an MCP server in Cursor IDE or Claude Desktop using the provided JSON config snippets.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp docs tools": {
            "project-docs": {
                "command": "node",
                "args": [
                    "bin/server.js"
                ]
            }
        }
    }
}

McpServers

{
    "project-docs": {
        "command": "node",
        "args": [
            "bin/server.js"
        ]
    }
}

MCP Docs Tools

A Node.js-based MCP (Model Context Protocol) tool server that provides three focused documentation generation tools for Python projects. Built as an npm package that can be installed directly from the Git repository.

Features

🔧 Three Powerful Tools

1. create_class_diagram - Analyzes Python files and generates UML class diagrams in PlantUML format
2. create_tree_structure - Creates clean directory tree structure documentation with smart exclusions
3. create_module_functions - Documents module-level functions with signatures, decorators, and type hints

🚀 Key Benefits

- Zero Configuration: Works out of the box with sensible defaults
- Smart Exclusions: Automatically filters out cache, build, and IDE files
- Rich Documentation: Captures type hints, decorators, docstrings, and inheritance
- MCP Integration: Seamlessly integrates with AI assistants via Model Context Protocol
- Hybrid Architecture: Node.js orchestration + Python AST parsing for reliability

Installation

From Git Repository (Recommended)

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.