diagrams-so
OfficialAllows exporting cloud architecture diagrams in draw.io format that can be opened and edited in diagrams.net.
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., "@diagrams-soGenerate an AWS 3-tier web app diagram"
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.
@diagrams-so/mcp
The Diagrams.so MCP server — generate, edit, and manage cloud architecture diagrams from any MCP client (Claude Desktop, Claude Code, Cursor). It's a thin stdio client over the public Diagrams.so API (/api/v2); every tool is one REST call.
Quick start
Needs Node ≥ 18. No API key to copy: you connect by approving in a browser.
# 1. add the server to Claude Code
claude mcp add diagrams-so -- npx -y @diagrams-so/mcp
# 2. connect this machine (a browser opens, press Approve)
npx @diagrams-so/mcp loginRestart your client, then ask: "Generate an AWS 3-tier web app diagram and show me the warnings."
Run /mcp if you want to confirm all 23 tools registered first.
Using it a lot? Install once and the command gets shorter:
npm i -g @diagrams-so/mcp
diagrams-so loginThe server talks to production (
https://api.diagrams.so/api/v2) by default. Point it at a local or self-hosted API withDIAGRAMS_API_BASE.
Using Claude Desktop or Cursor instead of the CLI? See Add it to your MCP client. Prefer a one-click, no-terminal install? See One-click install (MCPB).
Add the server to your client config (below), then just ask for a diagram. Because the machine isn't connected yet, the first tool call replies with a link. Open it, press Approve, and ask again. Nothing to install or type.
Related MCP server: fcp-drawio
Generating a diagram from Claude
login only connects the machine. It never generates anything itself, so there is no
generate command to type in a terminal. You write the prompt in your assistant's normal
chat box and it calls the tools for you.
Client | Where you type the prompt |
Claude Code | the terminal chat, same place you ask anything else |
Claude Desktop | the normal message box |
Cursor | the chat or composer panel |
MCP servers load at startup, so restart your client after adding it. Then run /mcp and
confirm diagrams-so shows 23 tools.
Now just ask, in plain English:
Generate an AWS three-tier web app with an ALB, EC2 Auto Scaling and RDS Multi-AZ. Show me the design warnings, then export it as draw.io.
Behind that one sentence the assistant calls generate_diagram, then get_warnings, then
export_diagram. You never name a tool or write JSON.
More things worth asking, once you have a diagram:
The warnings mention no encryption in transit. Fix that one and show me the new score.
Add a CloudFront distribution in front of the ALB.
Re-export it as SVG so I can drop it in the README.
Each reply carries the credit cost and your remaining balance. Generating, editing, fixing and re-laying-out spend credits; reading, warnings and every export are free.
The .drawio file the assistant saves opens at app.diagrams.net or
in the desktop app, fully editable — it is real draw.io XML, not a picture.
Prefer not to use an assistant at all? diagrams.so/create has
the same thing as a web page: type the prompt in the box. No install, no login, no MCP.
Tools (23)
Create & change (mutating)
Tool | What it does | Cost |
| Create a diagram from a prompt → id + draw.io XML + warnings + score | credits |
| Apply a natural-language change (new version) | credits |
| Resolve one Well-Architected warning | credits |
| AI re-arrange the layout (async; first 2/diagram free, then confirm) | credits* |
| Import existing draw.io XML as a new diagram | free |
| Rename / change visibility / replace XML | free |
| Revert to an earlier version | free |
| Soft-delete a diagram (destructive) | free |
| Copy a public/library diagram into your account (private) | free |
Read (free)
Tool | What it does |
| Fetch a diagram's XML + score |
| List your diagrams (cursor-paginated) |
| Well-Architected findings for a diagram |
| Raw |
| Version history (with |
| A specific version's XML + score |
| Poll an async re-layout job |
| Search public community + curated library diagrams |
| Turn a rough idea into a detailed prompt |
| Get clarifying questions for a vague prompt |
| Plan + credits + cost estimates |
| Itemized credit ledger per task (action, credits, diagram, surface) with filters + a live session tally |
| Account, plan, scopes, live/test mode |
| Valid diagram types / providers / export formats |
Reads and exports are free; generate / edit / fix / relayout cost credits, and delete is destructive. relayout asks for confirm=true before it charges.
CLI
Commands
Installing the package puts diagrams-so on your PATH. The longer
diagrams-so-mcp name still works, and npx @diagrams-so/mcp <command> works
without installing anything.
npm i -g @diagrams-so/mcp
diagrams-so login # connect this machine (a browser opens, press Approve)
diagrams-so whoami # which account is this machine connected as
diagrams-so logout # remove the local credential
diagrams-so install # print client config to pasteEnvironment
Var | Required | Default |
| ❌ | — (CI and headless only; |
| ❌ |
|
| ❌ |
|
| ❌ | — ( |
| ❌ | — (set to any value to stop |
| ❌ | — (set to any value to disable in-tool connect; unauthenticated tools then just say to run |
Add it to your MCP client
The published package runs straight from npm, so there is no path to fill in and no key in the
config. Run npx @diagrams-so/mcp install to print these blocks for your client.
Claude Code (CLI)
claude mcp add diagrams-so -- npx -y @diagrams-so/mcp
npx @diagrams-so/mcp loginClaude Desktop / Cursor (claude_desktop_config.json / mcp.json)
{
"mcpServers": {
"diagrams-so": {
"command": "npx",
"args": ["-y", "@diagrams-so/mcp"]
// optional: "env": { "DIAGRAMS_API_BASE": "http://localhost:8000/api/v2" } for a local API
}
}
}Connect either by running npx @diagrams-so/mcp login once, or by asking for a diagram and
clicking the link the first tool call gives you. Set DIAGRAMS_API_KEY instead only for CI and
headless machines, where no browser can open.
Restart the client, then ask: "Generate an AWS 3-tier web app diagram and show me the warnings."
One-click install (MCPB)
Download diagrams-so.mcpb from the
latest release and drag it into
Claude Desktop. No terminal, and it no longer asks for an API key: install it, then connect on first
use by clicking the link the first tool call gives you.
Building the bundle yourself is a contributor step, see Developing locally.
Verify it works
DIAGRAMS_API_KEY=dgz_live_your_key node test-smoke.mjsRuns the full flow (connect → list tools → whoami → generate → warnings → fix → export → error handling).
Continuous integration & releases
Workflow | Trigger | What it does |
CI ( | every push / PR |
|
Live smoke ( | nightly + manual | the full end-to-end flow ( |
Release ( | tag | build → |
Cut a release:
# bump "version" in package.json + manifest.json to match, commit, then:
git tag v1.2.0 && git push origin v1.2.0The tag must match package.json's version (the workflow enforces this). The
.mcpb bundle appears on the GitHub Release; manual workflow_dispatch produces
it as a downloadable artifact without publishing (handy for testing a bundle).
Repo secrets/variables (optional): DIAGRAMS_API_KEY (live smoke),
NPM_TOKEN (npm publish), DIAGRAMS_API_BASE variable (non-prod live-smoke target).
Notes
stdout is the MCP channel — the server logs only to stderr.
Errors come back as clean MCP tool errors carrying the API's
code, HTTP status, andrequest_id.The server never talks to internal services or the database — only the public
/api/v2.Long-running tools stay alive past client timeouts.
generate/edit/fix/relayout/enhance_prompt/clarify_promptemit anotifications/progressevery 10s while running, so MCP clients that reset their request timeout on progress (resetTimeoutOnProgress) won't abort a slow generation at the SDK's 60s default. If your client doesn't reset on progress, raise its per-call timeout for these tools.
Developing locally
Only needed if you are changing the server itself. Users should install from npm, see Quick start.
git clone https://github.com/RedHold/diagrams-mcp-app-core.git
cd diagrams-mcp-app-core
npm install # installs deps and builds dist/ via the prepare hook
node scripts/ci-smoke.mjs # all 23 tools register; no API calls, no credits
# point a client at your working copy
claude mcp add diagrams-so-dev -- node "$(pwd)/dist/index.js"
# build the MCPB bundle
npm run build && npx @anthropic-ai/mcpb packMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that generates professional infrastructure diagrams using the Python diagrams DSL, with first-class Azure support and GitHub Copilot integration for natural language diagram generation.Last updated4MIT
- AlicenseBqualityBmaintenanceMCP server that enables LLMs to create and edit draw.io diagrams using high-level intent commands, with automatic layout and styling.Last updated4123MIT
- AlicenseAqualityAmaintenanceMCP server for creating and editing diagrams using draw.io. Allows generating diagrams from Mermaid or XML, searching shapes, and opening them in draw.io for export.Last updated20Apache 2.0
- Alicense-qualityAmaintenanceMCP server for generating architecture diagrams with official vendor icons from natural language descriptions. Provides tools to validate specs, render diagrams, search icon catalog, and list available services.Last updated3MIT
Related MCP Connectors
Generate cloud architecture diagrams, flowcharts, and sequence diagrams.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/RedHold/diagrams-mcp-app-core'
If you have feedback or need assistance with the MCP directory API, please join our Discord server