Generate-documentation-MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Generate-documentation-MCPDocument my uncommitted changes."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Generate-documentation-MCP
MCP server for Claude Code that turns a Git repository's changes — uncommitted, a single commit, or a whole branch — into a structured Markdown documentation skeleton — diffs, file list and placeholders — ready for Claude Code to fill in with the actual analysis.
This is a standalone product, not an evolution of
Generate-documentation-IA.
That project's gendoc shell script was used only as a reference for the
skeleton format; this repo does not reuse its code.
Design
No AI API calls. All language understanding ("ignore CSS files", "document this in Portuguese") happens in Claude Code, which translates the request into structured parameters. The MCP server only executes them: reads Git diffs, applies include/exclude filters, renders a template, and writes the file.
core/owns all logic.cli/andmcp_server/are thin adapters that callcore.generator.generate_documentation()and format its result — neither contains business rules.Skeleton, not final prose. The generated Markdown mirrors the original script's workflow: diffs are embedded with
[To be filled by AI]placeholders. After calling the tool, Claude Code edits the output file directly to fill in the analysis.
core/ diff collection, filtering, template rendering, file writing
cli/ argparse wrapper around core, for local/manual use
mcp_server/ FastMCP server exposing the generate_documentation tool
templates/ Jinja2 skeleton templates (default_en.md.j2, default_pt.md.j2)
tests/ pytest suite (uses real throwaway Git repos via subprocess)All Git commands live in core/git_diff.py — nothing else in the project
shells out to git. It exposes one function per diff source:
get_working_tree_diff(project_path)— staged + unstaged uncommitted changesget_commit_diff(project_path, commit_hash)— a single commit (defaults toHEAD)get_branch_diff(project_path, base_branch)— current branch vsbase_branch...HEAD
All three return the same list[ChangedFile] shape, so
core/generator.py and the Markdown template never know which mode produced
the diff — only mode picks which function runs; everything downstream
(filtering, rendering, writing) is identical for every mode.
Note: the MCP-facing package is named
mcp_server/, notmcp/, becausemcpis the name of the official MCP SDK this project depends on — a top-levelmcp/package in this repo would shadow it on import.
Related MCP server: Autodocument MCP Server
The generate_documentation tool
Parameters:
Name | Type | Default | Meaning |
| string | server cwd | Git repository to analyze |
| string[] | none (= all) | Glob patterns; only matching changed files are kept |
| string[] | none | Glob patterns to drop, applied after |
| string |
| Output path, relative to |
|
|
| Skeleton language |
| string | language default | Document title |
| string |
| Template name, resolved as |
|
|
| Diff source |
| string | null |
| Commit to document, used when |
| string |
| Base branch to diff against, used when |
Calling the tool with no arguments beyond project_path keeps documenting
uncommitted changes exactly as before — mode defaults to "working_tree".
Returns:
{
"success": true,
"output_file": "/path/to/documentation.md",
"files_processed": 12,
"files_ignored": 3
}On failure (success: false), a error field explains what went wrong (not a
Git repo, unknown template, unwritable path).
Diff scope matches the original script: staged + unstaged uncommitted changes, staged diff taking priority for files with both.
Installation
Requires Python 3.10+.
git clone https://github.com/Paulosouzx/Generate-documentation-MCP.git
cd Generate-documentation-MCP
python3 -m venv .venv
source .venv/bin/activate
pip install -e .This installs the gendoc-mcp (CLI) and gendoc-mcp-server (MCP server)
console scripts into .venv/bin/.
Registering with Claude Code
Register it once, at user scope, so it's available in every project:
claude mcp add --scope user --transport stdio gendoc -- \
/absolute/path/to/Generate-documentation-MCP/.venv/bin/gendoc-mcp-serverVerify it's registered:
claude mcp listor run /mcp inside a Claude Code session.
Using it
Inside any Git repository, in Claude Code, describe what you want in plain
language — Claude Code translates it into tool parameters, the server writes
documentation.md with the diffs and placeholders, and Claude Code then
edits that file in place to fill in the actual analysis.
Document local (uncommitted) changes
"Document the changes on this branch, ignoring CSS files, in Portuguese."
{"exclude": ["*.css"], "language": "pt"}(mode omitted — defaults to "working_tree".)
Document a specific commit
"Document what changed in commit a1b2c3d."
{"mode": "commit", "commit_hash": "a1b2c3d"}"Document the last commit."
{"mode": "commit"}(commit_hash omitted — defaults to HEAD.)
Document a whole branch
"Document everything this branch adds compared to origin/develop."
{"mode": "branch", "base_branch": "origin/develop"}(base_branch omitted — defaults to "origin/main".)
Development
pip install -e ".[dev]"
pytestCLI usage (no Claude Code needed), useful for manual testing:
# Uncommitted changes (default mode)
gendoc-mcp
gendoc-mcp --mode working_tree --exclude "*.css" --language pt
# A specific commit (defaults to HEAD if --commit omitted)
gendoc-mcp --mode commit --commit a1b2c3d
# Current branch vs a base branch (defaults to origin/main)
gendoc-mcp --mode branch --base origin/developAdding a new tool
Add the core function in core/, then expose it with a new @mcp.tool()
function in mcp_server/server.py that calls it — no logic in the server
itself. Add a matching CLI subcommand in cli/ if useful for manual/local
use.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Paulosouzx/mcp-gen-documentation'
If you have feedback or need assistance with the MCP directory API, please join our Discord server