draw-io-mcp
Allows creating and manipulating Draw.io/diagrams.net diagrams, including adding shapes, connectors, and multi-line text, as well as reading and listing diagram contents.
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., "@draw-io-mcpCreate a flowchart with Start, Process, and End shapes connected with arrows."
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.
Draw.io MCP Server
A Model Context Protocol (MCP) server that enables Claude to create and manipulate Draw.io diagrams directly through conversation.
Features
Create new Draw.io diagram files
Add various shapes (rectangles, ellipses, rhombus, cylinders, hexagons, clouds, etc.)
Add connectors/arrows between shapes
Multi-line text support - Use
\nfor line breaks in shape labels (great for class diagrams)Customize colors, positions, and sizes
List and read existing diagrams
Intelligent path resolution (supports relative, absolute, and ~ paths)
Automatic path translation for cross-platform compatibility
Related MCP server: Draw.io MCP Server
Installation
Clone this repository:
git clone <repository-url>
cd draw-io-mcpInstall dependencies:
npm installBuild the project:
npm run buildConfiguration for Claude Desktop
To use this MCP server with Claude Desktop, add the following configuration to your Claude Desktop config file:
macOS
Edit: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows
Edit: %APPDATA%\Claude\claude_desktop_config.json
Add the following configuration:
{
"mcpServers": {
"draw-io": {
"command": "node",
"args": ["/absolute/path/to/draw-io-mcp/dist/index.js"]
}
}
}Replace /absolute/path/to/draw-io-mcp with the actual path to this project directory.
After adding the configuration, restart Claude Desktop.
Configuration for Claude Code
To use this MCP server with Claude Code (the CLI), add it via the claude mcp add command or by editing the config file directly.
Option 1: CLI (recommended)
claude mcp add draw-io node /absolute/path/to/draw-io-mcp/dist/index.jsReplace /absolute/path/to/draw-io-mcp with the actual path to this project directory.
Option 2: Edit the config file directly
Claude Code stores MCP configuration in ~/.claude/mcp.json (global) or .claude/mcp.json inside a project (project-scoped). Add the following entry:
{
"mcpServers": {
"draw-io": {
"command": "node",
"args": ["/absolute/path/to/draw-io-mcp/dist/index.js"]
}
}
}Verify the server is running
After adding the configuration, start or restart Claude Code and run:
claude mcp listYou should see draw-io listed as a connected server. You can also run:
claude mcp get draw-ioto inspect its status and the tools it exposes.
Scope options
Claude Code supports three configuration scopes:
Scope | Flag | Config location | When to use |
Local (project-only) |
|
| Diagrams for a specific repo |
User (global) |
|
| Available in all your projects |
Project (shared) |
|
| Shared with teammates via git |
Example to add with a specific scope:
claude mcp add --scope user draw-io node /absolute/path/to/draw-io-mcp/dist/index.jsUsage Examples
Once configured, you can ask Claude to create diagrams:
Example 1: Simple Flowchart
Create a flowchart at ./flowchart.drawio with:
1. A "Start" rectangle at (100, 50)
2. A "Process Data" rectangle at (100, 150)
3. A "Decision" rhombus at (100, 250)
4. Connect them with arrowsExample 2: Architecture Diagram
Create a system architecture diagram at ./architecture.drawio showing:
- A cloud shape for "Cloud Services"
- A cylinder for "Database"
- Rectangles for different services
- Connect them appropriatelyExample 3: Class Diagram with Multi-line Text
Create a class diagram for a Vehicle hierarchy with:
- A Vehicle class with attributes (brand, model) and methods (start, stop)
- A Car subclass with numDoors attribute
- A Motorcycle subclass with engineCC attribute
Use \n for line breaks to separate class name, attributes, and methodsThe \n in shape text creates proper line breaks, so text like:
Vehicle\n---\n- brand: String\n+ start(): voidRenders as:
Vehicle
---
- brand: String
+ start(): voidAvailable Tools
The MCP server provides the following tools:
create_diagram - Create a new Draw.io diagram file
add_shape - Add shapes (rectangle, ellipse, rhombus, cylinder, hexagon, cloud, step, parallelogram, trapezoid, triangle). Supports multi-line text with
\nadd_connector - Add connectors between shapes with different styles (straight, curved, orthogonal)
read_diagram - Read the raw XML content of a diagram
list_shapes - List all shapes in a diagram with their properties
Path Handling
All diagrams are saved to your Desktop by default to make it easy to find them. The server intelligently handles file paths across different platforms:
Default Behavior
Simple filenames:
diagram.drawio→ Saved to your DesktopRelative paths:
./flowchart.drawio→ Saved to your Desktop (subdirectories ignored)Claude-suggested paths:
/home/claude/test.drawio→ Saved to your Desktop
This makes it crystal clear where your files are - they're always on YOUR computer's Desktop, not on any remote machine.
Supported Path Formats
Desktop (default):
diagram.drawioSaved to
~/Desktop/diagram.drawio
Absolute paths:
/Users/username/Documents/diagram.drawioUsed as-is (validated for safety)
Lets you save to specific locations if needed
Home directory subdirectories:
~/Documents/diagram.drawioExpands
~and saves to the specified locationUseful for organizing diagrams in specific folders
Automatic Path Translation
When Claude Desktop suggests paths like /home/claude/diagram.drawio, the server automatically translates them to your Desktop:
/home/claude/diagram.drawio→~/Desktop/diagram.drawio/home/claude/subfolder/test.drawio→~/Desktop/test.drawio
This ensures you always know where your files are saved.
Safety Features
The server prevents file creation in system directories (/usr, /bin, /etc, etc.) to protect your system.
Development
Build
npm run buildWatch Mode
npm run watchFile Format
Draw.io files (.drawio) are XML-based files that can be opened with:
Draw.io web app (https://app.diagrams.net)
Draw.io desktop application
VS Code with Draw.io extension
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/eason-pan-ep/draw-io-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server