Skip to main content

Static documentation generator for MCP servers — like Swagger UI, but for MCP

Project description

mcpdocs

Static documentation generator for MCP servers — like Swagger UI, but for MCP.

mcpdocs introspects running Model Context Protocol (MCP) servers via SSE and generates a beautiful, searchable static documentation site. It helps developers and users understand the tools, resources, and prompts available in an MCP server.

Features

  • 🔍 Auto-Introspection: Connects to any running MCP server via SSE URL to discover its capabilities.
  • 🛠️ Full Support: Documents Tools, Resources, Resource Templates, and Prompts.
  • 🎨 Beautiful UI: Clean, responsive, and searchable documentation with dark mode support.
  • 🚀 FastAPI Integration: Easily mount auto-generated docs on your existing FastAPI application.
  • 📦 Static Output: Generates pure HTML/CSS that can be hosted anywhere (GitHub Pages, S3, etc.).
  • 🤖 CI/CD Ready: CLI-first design for automated documentation workflows.

Installation

pip install mcpdocs

To use the FastAPI integration:

pip install "mcpdocs[fastapi]"

Usage

1. Command Line Interface (CLI)

The CLI tool is named mcpdocs. To generate documentation, you provide the SSE URL of your running server.

Basic Example:

mcpdocs generate --url "http://localhost:8000/sse"

Custom Output Directory:

mcpdocs generate --url "http://localhost:8000/sse" --output "./static-docs"

CLI Reference

Flag Shortcut Description
--url -u (Required) The SSE URL of the running MCP server.
--output -o Where to save the HTML (default: ./site).
--timeout -t Seconds to wait for server responses (default: 30.0).

2. FastAPI Integration

You can serve the documentation site directly from your FastAPI application.

from fastapi import FastAPI
from mcpdocs.integrations.fastapi import setup_mcpdocs

app = FastAPI()

setup_mcpdocs(
    app,
    url="http://localhost:8000/sse",
    mount_path="/docs/mcp",
    output_dir=".mcpdocs-cache"
)

Python API Reference (setup_mcpdocs)

Parameter Type Description
app FastAPI Your FastAPI application instance.
url str The SSE URL of the running MCP server.
mount_path str URL path where docs will be served (default: /mcpdocs).
output_dir str Local path to store static files (default: .mcpdocs-static).
timeout float Seconds to wait for server responses (default: 30.0).
auto_regenerate bool If True, regenerates docs on app startup (default: True).

3. Inspect (JSON dump)

Dump the raw server spec as JSON — useful for CI or debugging:

mcpdocs inspect --url "http://localhost:8000/sse"

How it works

  1. Introspection: mcpdocs connects to the provided SSE URL.
  2. Connection: It establishes a JSON-RPC connection over the SSE transport.
  3. Discovery: It queries the server for all available tools, resources, and prompts.
  4. Rendering: It generates a standalone static website using Jinja2 templates.

Security

Only run mcpdocs against trusted MCP servers. The generated documentation does not include sensitive configuration details of the server.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcpdocs_gen-0.1.1.tar.gz (16.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcpdocs_gen-0.1.1-py3-none-any.whl (24.4 kB view details)

Uploaded Python 3

File details

Details for the file mcpdocs_gen-0.1.1.tar.gz.

File metadata

  • Download URL: mcpdocs_gen-0.1.1.tar.gz
  • Upload date:
  • Size: 16.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mcpdocs_gen-0.1.1.tar.gz
Algorithm Hash digest
SHA256 8f99d46f04fd59bc98d2c8687dee0883c9a4e36ea0fd94181f6c239ad0b944f9
MD5 5e28982d9853f394fb8659fe0140cd46
BLAKE2b-256 ddd87e58ee56c3e0e9debb68a3c3585dd54cc663745420e34403f05e0c6f610d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcpdocs_gen-0.1.1.tar.gz:

Publisher: publish.yml on smytsyk/mcpdocs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcpdocs_gen-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: mcpdocs_gen-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mcpdocs_gen-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0ffce39a5ebe01dc52faa736d7e5a4a52bd3276e8aeca2d1c227ec4222b10647
MD5 aeac44c98195b594a244c710826a055f
BLAKE2b-256 42304c2738105c631d28f4f1e5345a3010879be4d3edadd03df56701b5bf4c72

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcpdocs_gen-0.1.1-py3-none-any.whl:

Publisher: publish.yml on smytsyk/mcpdocs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page