UML-MCP
Supports generating Excalidraw diagrams as one of the specialized diagram types available through the server.
Enables generating Mermaid diagrams from textual definitions and rendering them to SVG, PNG, PDF, JPEG, or base64 outputs.
Allows generating UML diagrams, including class, sequence, activity, use case, state, component, deployment, and object diagrams.
Click on "Deploy 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., "@UML-MCPGenerate a UML class diagram for a library management system"
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.
UML-MCP: Diagram Generation via MCP
Generate UML and other diagrams through the Model Context Protocol.
At a glance
Topic | What you get |
Diagrams | 30+ types: UML (Class, Sequence, Activity, Use Case, State, Component, Deployment, Object), Mermaid, D2, Graphviz, TikZ, ERD, BlockDiag, BPMN, C4, and more via Kroki |
MCP tools |
|
Outputs | SVG, PNG, PDF, JPEG, base64 (availability varies by diagram type) |
Pipeline | Kroki first, then PlantUML or Mermaid.ink |
Deployment |
Source | URL |
Live MCP (HTTP) | |
Smithery catalog |
Quick Start
Choose your mode
Remote (recommended): Fast setup over HTTP MCP with Vercel serverless runtime
Local: stdio process for file output and local debugging
Remote quick start (Vercel HTTP MCP)
Configuration for the public Vercel deployment:
"uml-mcp": {
"transport": "http",
"url": "https://uml-mcp.vercel.app/mcp"
}Local quick start (stdio MCP)
git clone https://github.com/antoinebou12/uml-mcp.git && cd uml-mcp
uv sync
uv run python server.pyExample client configs:
config/cursor_config.jsonconfig/claude_desktop_config.jsonconfig/README.mdfor exact config file locationsClaude Code: install the bundled plugin from the repo marketplace (see below) or read docs/integrations/claude_code.md
Claude Code plugin
Adds the hosted HTTP MCP server plus a diagram skill (no settings.json paste). In Claude Code:
/plugin marketplace add https://github.com/antoinebou12/uml-mcp
/plugin install uml-mcp@uml-mcp-pluginsUse a local path instead of the GitHub URL if you already cloned this repo. Custom endpoints and validation: docs/integrations/claude_code.md.
Related MCP server: Draw.io MCP Server
Remote vs Local
Transport: Remote uses HTTP MCP, local uses stdio by default
Runtime: Remote runs on Vercel, local runs in your Python environment
File writes: Remote is read-only (no
output_dir), local supportsoutput_dirReturned data: Both return URL + base64; local can also save files
Environment variables: Remote is managed server-side; local reads your env config
MCP clients must call /mcp, not the site root.
Supported Diagram Types
Category | Examples |
UML (PlantUML) | Class, Sequence, Activity, Use Case, State, Component, Deployment, Object |
General | Mermaid, D2, Graphviz, ERD, BlockDiag, BPMN, C4 |
Specialized | TikZ, Excalidraw, Nomnoml, Pikchr, Structurizr, SVGBob, WaveDrom, WireViz, … |
Full list with supported formats: run python server.py --list-tools or query uml://types and uml://formats.
MCP Tools and Resources
Tools
Tool | Purpose |
| Render a diagram; omit |
| Structural validation before render; |
| Same metadata as |
| Multiple diagrams in one call (cap: |
Resources (uml://)
Resource | Description |
| Diagram types, backends, supported formats per type |
| Starter templates per type; see BPMN 2.0.2 guide for element and flow reference (docs) |
| Example diagrams per type; Mermaid documents named samples (sequence API, Gantt) alongside |
| Output formats per type |
| Type → backend → formats matrix used for validation |
| Server name, version, tools, prompts, Kroki/PlantUML URLs |
| Recommended plan-then-generate workflow |
Deployment
Vercel
This repo includes vercel.json for serverless deployment.
Connect the repo to Vercel
Use
https://<project>.vercel.app/mcpKeep
/mcpin all MCP client URLs
Smithery
Open smithery.ai/new, choose URL
Enter
https://<project>.vercel.app/mcpConfigure display name, description, and homepage
Detailed guide: docs/integrations/vercel_smithery.md
Docker
Default image serves FastAPI on port 8000 with MCP HTTP at http://127.0.0.1:8000/mcp.
# Full local stack (local Kroki + mermaid + blockdiag)
docker compose up -d
# API + MCP only (public Kroki)
docker build -t uml-mcp . && docker run -p 8000:8000 uml-mcp
# stdio MCP subprocess mode
docker run -i uml-mcp python server.py --transport stdioConfiguration (Local runtime)
These variables apply to local/self-hosted runs. Remote Vercel endpoint settings are managed server-side.
Variable | Description | Default |
| Kroki server URL |
|
| PlantUML server URL |
|
| Diagram output directory |
|
| Disable file writes |
|
| Max diagram code length |
|
| Max items per |
|
| HTTP rate limit per IP for diagram/MCP routes ( |
|
| Use local Kroki instance |
|
| Use local PlantUML instance |
|
Full options: docs/configuration.md
Architecture
Typical flow when a user asks an MCP-enabled assistant for a diagram: the assistant calls generate_uml, the server renders via Kroki, then returns URLs and optional base64 to the assistant for the user.
server.py -- MCP entry point (stdio/HTTP)
app.py -- FastAPI REST API + MCP HTTP at /mcp
api/app.py -- legacy re-export of root app (Vercel FastAPI preset uses root app.py)
mcp_core/
core/ -- config, server, CLI, utilities, diagram pipeline
tools/ -- generate_uml, validate_uml
prompts/ -- diagram generation prompts
resources/ -- uml:// resource handlers
tools/kroki/ -- Kroki, PlantUML, Mermaid, D2 clientsDevelopment
# Install dev dependencies
uv sync --all-groups
# Run tests
uv run pytest tests/ -v
# Lint
uv run ruff check . && uv run ruff format --check .
# Local CI
make ciDocumentation
Online: antoinebou12.github.io/uml-mcp
Local:
uv run mkdocs servethen open http://127.0.0.1:8000
Contributing
License
Acknowledgements
PlantUML | Kroki | Mermaid | D2
Star History
Available Tools
4 toolsgenerate_umlBIdempotent
Generate any UML or diagram by type (class, sequence, mermaid, d2, etc.)
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Diagram code in the syntax for the chosen type | |
| scale | No | Scale factor for SVG only (default 1.0, min 0.1). Ignored for other formats. | |
| theme | No | PlantUML theme for UML diagrams (e.g. cerulean) | |
| output_dir | No | Directory to save the image. Omit or None for URL, playground, and content_base64 only (no file write; use in serverless / read-only). | |
| diagram_type | Yes | Type of diagram (class, sequence, activity, mermaid, d2, etc.) | |
| output_format | No | svg, png, pdf, jpeg, txt, or base64 (default: svg). See uml://formats per type. | svg |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide idempotentHint and destructiveHint. Description adds no further behavioral detail beyond generating diagrams, which is already clear. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loads purpose, no wasted words. Efficient and clear.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 6 parameters and output schema, description is sparse. Lacks context about output format options, file saving ability, or relationship to siblings. Output schema partly compensates.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with parameter descriptions. Tool description only hints at diagram_type via examples, adding minimal value beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool generates UML or diagrams by type, with examples. It distinguishes the action from siblings like validate_uml but does not explicitly differentiate from generate_uml_batch.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus siblings. No mention of batch generation or validation alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_uml_batchAIdempotent
Generate multiple diagrams in one call. Each item is like generate_uml (diagram_type, code, output_format?, theme?, scale?). Optional shared output_dir for all items. Returns a list of per-index results or errors.
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | ||
| output_dir | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide idempotentHint=true (safe to retry) and readOnlyHint=false (modifies state). The description adds that it returns a list of per-index results or errors, but lacks details on partial failures, atomicity, or whether output_dir affects file storage. Basic transparency but could be more detailed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the main action, and every word adds value. No wasted or repetitive language.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (2 parameters, one being an array of objects with no strict schema) and that an output schema exists, the description is fairly complete. It covers the item structure and the return format. A minor gap is the precise behavior of output_dir (e.g., if it creates directories), but overall it provides sufficient context for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description compensates by explaining that 'items' are like generate_uml with specific parameters (diagram_type, code, output_format?, theme?, scale?) and that output_dir is an optional shared directory. This provides meaningful semantics beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: generating multiple diagrams in one call. It distinguishes from the sibling 'generate_uml' by being a batch version, and lists the parameters that each item uses, similar to generate_uml.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context by stating 'Each item is like generate_uml' and mentions an optional shared output_dir. However, it does not explicitly state when to use this batch tool versus the single-call alternative, or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_diagram_typesARead-onlyIdempotent
List supported diagram types with Kroki backend, description, and formats (same data as uml://types resource). Use when the client cannot read resources.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, idempotentHint, destructiveHint, openWorldHint. The description adds context about the Kroki backend and data equivalence to a resource, which is additional useful behavioral info beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the action and key details. No extraneous information. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with no parameters and an output schema, the description covers what the tool lists (diagram types, backend, description, formats) and its usage context. It is complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so baseline is 4. The description adds no parameter info, but that's not needed. It provides context about the output content, which is helpful.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists supported diagram types with Kroki backend, description, and formats. It distinguishes from sibling tools which generate or validate UML, so purpose is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Use when the client cannot read resources.' This provides clear when-to-use guidance and implies the alternative (use the resource if available).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_umlARead-onlyIdempotent
Validate diagram type, format, code length, and basic syntax locally before render (no Kroki call). Returns errors and suggestions.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Diagram source text. | |
| strict | No | When True, apply extra Mermaid/D2 checks (no extra PlantUML rules). | |
| diagram_type | Yes | Same as generate_uml (see uml://types). | |
| output_format | No | Intended output format (default svg); must be allowed for the type. | svg |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds significant behavioral context beyond the annotations: it specifies local execution (no Kroki call), validates specific aspects (type, format, code length, basic syntax), and returns errors and suggestions. All annotations (readOnlyHint, idempotentHint, destructiveHint) are consistent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that efficiently conveys the tool's purpose and key characteristics. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the primary validation scope and return type, and with the output schema present, further detail is unnecessary. It could be slightly more specific about 'basic syntax,' but overall it is complete for the tool's role.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage with clear descriptions for each parameter. The tool description does not add any additional meaning to the parameters beyond what the schema already provides, so baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool validates diagram type, format, code length, and basic syntax locally before rendering. It distinguishes from sibling tools like generate_uml by emphasizing it is a pre-render validation step without a Kroki call.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool should be used before rendering to check validity, and it notes it runs locally without a Kroki call. However, it does not explicitly state when not to use it or name alternative tools for comparison.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
4 tool updates
v1.3.0- First observed
generate_uml - First observed
generate_uml_batch - First observed
list_diagram_types - First observed
validate_uml
TDQS
Scored across 4 tools
Each tool has a clearly distinct role: listing available types, validating before render, generating a single diagram, and batch-generating multiple diagrams. The single vs. batch generation pair is unambiguous given the explicit descriptions.
All four tools follow a consistent verb_noun snake_case pattern (list_diagram_types, generate_uml, generate_uml_batch, validate_uml). No mixing of conventions.
Four tools is well-scoped for a diagram rendering service, covering discovery, validation, single generation, and batch generation without redundancy. Each tool clearly earns its place.
The surface covers the full diagram workflow: discover types, validate, generate, and batch generate. Minor gap in that there is no explicit info/help tool, though list_diagram_types largely covers discovery.
Maintenance
Related MCP Connectors
Generate dynamic Mermaid diagrams and charts with AI assistance. Customize styles and export diagr…
Render, validate, encode/decode PlantUML diagram-as-code; 22 diagram types. Free, no auth.
Create and edit architecture diagrams from your AI agent; get an SVG and a live editable canvas.
Generate cloud architecture diagrams, flowcharts, and sequence diagrams.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to generate UML diagrams from text descriptions using PlantUML, supporting multiple output formats (PNG, SVG, PDF), syntax validation, and diagram source extraction.4 npmMIT
- AlicenseBqualityAmaintenanceEnables AI agents to programmatically create, modify, and analyze Draw.io diagrams through the Model Context Protocol. Supports generating architectural diagrams, flowcharts, and visualizations with bidirectional communication between AI systems and Draw.io.1353 npm1,461MIT
- FlicenseNot gradedqualityFmaintenanceEnables AI-driven graphical diagram creation and manipulation using natural language, with support for BPMN workflows, analysis, and manual editing via the Model Context Protocol.1-
- AlicenseAqualityAmaintenanceGenerates UML and other diagrams (30+ types) via the Model Context Protocol, supporting multiple output formats and deployment options.499MIT