D2 MCP Server
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., "@D2 MCP Servercreate a D2 diagram of a load balancer, three app servers, and a database"
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.
D2 MCP Server
A Model Context Protocol (MCP) server that provides D2 diagram generation and manipulation capabilities.
D2 is a modern diagram scripting language that turns text to diagrams. This MCP server allows AI assistants like Claude to create, render, export, and save D2 diagrams programmatically.
The server provides 16 MCP tools for complete-source authoring, validation, rendering, embedded D2 guidance, and incremental Oracle editing.
With the new Oracle API integration, AI assistants can now build and modify diagrams incrementally, making it perfect for:
Converting conversations into architecture diagrams
Building flowcharts step-by-step as requirements are discussed
Creating entity relationship diagrams from database schemas
Generating system diagrams from code analysis
Refining diagrams based on user feedback without starting over
Features
Source-First Diagram Operations
d2_create - Create diagrams from complete D2 source or start empty
d2_get_source - Retrieve the canonical source, including Oracle edits
d2_update_source - Validate then atomically replace complete source
d2_format - Format valid source without storing it
d2_validate - Validate raw or stored source and suggest conservative repairs
d2_export - Export with bundled D2 v0.9 renderers (SVG, PNG, PDF, PPTX, GIF, ASCII)
d2_save - Save an export inside a configured workspace root
d2_help - Search or retrieve embedded D2 v0.9 guidance
d2_capabilities - List the versioned capability catalog
Oracle API for Incremental Editing
d2_oracle_create - Create shapes and connections incrementally
d2_oracle_set - Set attributes on existing elements
d2_oracle_delete - Delete specific elements from diagrams
d2_oracle_move - Move shapes between containers
d2_oracle_rename - Rename diagram elements
d2_oracle_get_info - Get information about shapes, connections, or containers
d2_oracle_serialize - Get the current D2 text representation of the diagram
Additional Features
Bundled layouts - Dagre, ELK, and TALA
Typed rendering - Layout, theme overrides, bundled fonts, scale, padding, sketch, animation, board selection, and bounded output options
20 themes - Support for all D2 themes (18 light + 2 dark)
Related MCP server: Draw.io MCP Server
Project Structure
d2mcp/
├── cmd/ # Application entry point
├── internal/
│ ├── domain/ # Business entities and interfaces
│ │ ├── entity/ # Domain entities
│ │ └── repository/ # Repository interfaces
│ ├── usecase/ # Business logic
│ ├── infrastructure/ # External implementations
│ │ ├── d2/ # D2 library integration
│ │ └── mcp/ # MCP server implementation
│ └── presentation/ # MCP handlers
│ └── handler/ # Tool handlers
└── pkg/ # Public packagesPrerequisites
Go 1.27 or higher
D2 v0.9.0 (included as a Go dependency)
All export formats use bundled Go renderers; no rsvg-convert, ImageMagick, or Chromium installation is required.
The embedded capability catalog is based on the official D2 language tour, D2 API documentation, and D2 v0.9.0 release.
Installation
From Source
# Clone the repository
git clone https://github.com/recursivefunctions/d2mcp.git
cd d2mcp
# Build the binary
make build
# Or build for all platforms
make build-allUsing Go Install
go install github.com/recursivefunctions/d2mcp/cmd@latestUsing Docker
docker run --rm -i \
--mount type=bind,src="$PWD",dst=/workspace \
ghcr.io/recursivefunctions/d2mcp:0.5.0The image defaults to STDIO transport and confines local imports, assets, and exports to the mounted /workspace directory. The container runs as a non-root user, so the mounted directory must be writable by that user when saving exports.
MCP Registry
Release tags publish the server as io.github.RecursiveFunctions/d2mcp in the official MCP Registry. After the first release succeeds, open the VS Code Extensions view and search for @mcp d2mcp, or use MCP: Add Server from the Command Palette.
Compatible clients can also use the portable .mcp.json configuration in this repository. It requires Docker and mounts the current workspace at /workspace.
Building
# Simple build
make build
# Run directly
make run
# Cross-platform builds
make build-allUsage
With Claude Desktop
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json
For STDIO transport (recommended for Claude Desktop):
{
"mcpServers": {
"d2mcp": {
"command": "/path/to/d2mcp",
"args": ["-transport=stdio"]
}
}
}For SSE transport:
{
"mcpServers": {
"d2mcp": {
"command": "/path/to/d2mcp",
"args": ["-transport=sse", "-addr=:3000"]
}
}
}Replace /path/to/d2mcp with the actual path to your built binary.
Standalone
# Run the MCP server (stdio transport)
./d2mcp -transport=stdio
# Run with SSE transport (default)
./d2mcp
# or explicitly
./d2mcp -transport=sse
# Run with Streamable HTTP transport
./d2mcp -transport=streamableTransport Options
d2mcp now supports multiple transport protocols:
STDIO Transport
The traditional stdio transport for direct process communication:
./d2mcp -transport=stdioSSE Transport (Server-Sent Events)
HTTP-based transport that allows network connectivity:
# Basic SSE mode (defaults to :3000)
./d2mcp -transport=sse
# Custom configuration
./d2mcp -transport=sse \
-addr=:8080 \
-base-url=http://localhost:8080 \
-base-path=/mcp \
-keep-alive=30SSE Configuration Options:
-addr: Address to listen on (default: ":3000")-base-url: Base URL for SSE endpoints (auto-generated if not specified)-base-path: Base path for SSE endpoints (default: "/mcp")-keep-alive: Keep-alive interval in seconds (default: 30)
SSE Endpoints: When running in SSE mode, the following endpoints are available:
SSE stream:
http://localhost:3000/mcp/sseMessage endpoint:
http://localhost:3000/mcp/message
Streamable HTTP Transport
The modern HTTP-based transport that simplifies bidirectional communication:
# Basic Streamable HTTP mode
./d2mcp -transport=streamable
# Custom configuration
./d2mcp -transport=streamable \
-addr=:8080 \
-endpoint-path=/mcp \
-heartbeat-interval=30 \
-statelessStreamable HTTP Configuration Options:
-addr: Address to listen on (default: ":3000")-endpoint-path: Endpoint path for Streamable HTTP (default: "/mcp")-heartbeat-interval: Heartbeat interval in seconds (default: 30)-stateless: Enable stateless mode (default: false)
Streamable HTTP Endpoint: When running in Streamable HTTP mode, a single endpoint handles all communication:
Endpoint:
http://localhost:3000/mcp
Workspace and Asset Security
The server confines imports, local images, and saved files to named workspace roots. The default root is the server's current working directory.
./d2mcp -transport=stdio \
-workspace-root=docs=/workspace/docs \
-workspace-root=diagrams=/workspace/diagrams \
-remote-asset-max-bytes=10485760 \
-remote-asset-timeout=30s-workspace-root is repeatable. Local path traversal and symlink escapes are rejected. Remote assets require HTTPS and are subject to DNS/IP, redirect, timeout, MIME, and response-size checks; loopback and private-network destinations are rejected.
Tools
d2_create
Create a new diagram with optional initial content (unified approach):
Empty diagram (for Oracle API workflow):
{
"id": "my-diagram"
}With initial D2 content and a named workspace for imports/assets:
{
"id": "my-diagram",
"content": "a -> b: Hello\nserver: {shape: cylinder}",
"workspace_root": "diagrams"
}d2_export
Export a diagram using a bundled renderer and layout engine:
{
"diagramId": "my-diagram",
"format": "png",
"layout": "tala",
"themeId": 200,
"scale": 1.5,
"maxPixels": 33554432
}Formats are svg, png, pdf, pptx, gif, and ascii (txt is an alias). Layouts are dagre, elk, and tala. Typed options cover engine spacing, themes and overrides, bundled fonts, padding, scale, sketch mode, animation, board selection, and resource limits.
PDF, PPTX, GIF, and optionally animated SVG compose bounded descendant boards. PNG and ASCII produce one board; use boardPath to select one from a composition.
d2_save
Save a diagram inside a configured workspace root:
{
"diagramId": "my-diagram",
"format": "pdf",
"workspace_root": "diagrams",
"path": "exports/output.pdf"
}If path is omitted, output is written below d2mcp_output/ in the selected root.
d2_validate
Validate raw D2 source or the current source of a stored diagram. Supply exactly one input:
{
"content": "a: {\n b"
}{
"diagram_id": "my-diagram"
}Invalid D2 returns a successful structured result with valid: false and compiler diagnostics. Simple, unambiguous terminator errors may also include repaired_content; validation never modifies a stored diagram.
d2_get_source and d2_update_source
Complete D2 source is canonical, so every bundled v0.9 language feature can be authored without waiting for a specialized structured tool.
{"diagram_id": "my-diagram"}{
"diagram_id": "my-diagram",
"content": "direction: right\nclient -> api -> database"
}Updates compile first and replace atomically. Invalid drafts return structured diagnostics and leave stored source unchanged.
d2_format
{"content": "api:{db}"}Returns formatted source without creating or changing a diagram.
d2_help and d2_capabilities
{"query": "sequence diagrams", "limit": 5}d2_help searches the embedded v0.9.0 reference or returns an exact topic by ID. d2_capabilities lists its categories and MCP resource URIs. Embedded resources cover the core language, connections, reusable definitions, visuals, rich text, structured/sequence/grid diagrams, composition, layouts, and exports.
Oracle API Tools
The Oracle API tools enable incremental diagram manipulation without regenerating the entire diagram. These tools are ideal for building diagrams step-by-step or making surgical edits.
d2_oracle_create
Create a new shape or connection:
{
"diagram_id": "my-diagram",
"key": "server" // Creates a shape
}{
"diagram_id": "my-diagram",
"key": "server -> database" // Creates a connection
}d2_oracle_set
Set attributes on existing elements:
{
"diagram_id": "my-diagram",
"key": "server.shape",
"value": "cylinder"
}{
"diagram_id": "my-diagram",
"key": "server.style.fill",
"value": "#f0f0f0"
}d2_oracle_delete
Delete elements from the diagram:
{
"diagram_id": "my-diagram",
"key": "server" // Deletes the server and its children
}d2_oracle_move
Move elements between containers:
{
"diagram_id": "my-diagram",
"key": "server",
"new_parent": "network.internal", // Moves server into network.internal
"include_descendants": "true" // Also moves child elements
}d2_oracle_rename
Rename diagram elements:
{
"diagram_id": "my-diagram",
"key": "server",
"new_name": "web_server"
}d2_oracle_get_info
Get information about diagram elements:
{
"diagram_id": "my-diagram",
"key": "server",
"info_type": "object" // Options: "object", "edge", "children"
}d2_oracle_serialize
Get the current D2 text representation of the diagram:
{
"diagram_id": "my-diagram"
}Returns the complete D2 text of the diagram including all modifications made through Oracle API.
Creating Sequence Diagrams
D2 has built-in support for sequence diagrams. Use d2_create with proper D2 sequence diagram syntax:
{
"id": "api-flow",
"content": "shape: sequence_diagram\n\nClient -> Server: HTTP Request\nServer -> Database: Query\nDatabase -> Server: Results\nServer -> Client: HTTP Response\n\n# Add styling\nClient -> Server.\"HTTP Request\": {style.stroke-dash: 3}\nDatabase -> Server.\"Results\": {style.stroke-dash: 3}"
}Example with actors and grouping:
{
"id": "auth-flow",
"content": "shape: sequence_diagram\n\ntitle: Authentication Flow {near: top-center}\n\n# Define actors\nClient: {shape: person}\nAuth Server: {shape: cloud}\nDatabase: {shape: cylinder}\n\n# Interactions\nClient -> Auth Server: Login Request\nAuth Server -> Database: Validate Credentials\nDatabase -> Auth Server: User Data\n\ngroup: Success Case {\n Auth Server -> Client: Access Token\n Client -> Auth Server: API Request + Token\n Auth Server -> Client: API Response\n}\n\ngroup: Failure Case {\n Auth Server -> Client: 401 Unauthorized\n}"
}Example Oracle API Workflow
Starting from scratch:
// 1. Create an empty diagram
d2_create({ id: "architecture" })
// 2. Add shapes incrementally
d2_oracle_create({ diagram_id: "architecture", key: "web" })
d2_oracle_create({ diagram_id: "architecture", key: "api" })
d2_oracle_create({ diagram_id: "architecture", key: "db" })
// 3. Set properties
d2_oracle_set({ diagram_id: "architecture", key: "db.shape", value: "cylinder" })
d2_oracle_set({ diagram_id: "architecture", key: "web.label", value: "Web Server" })
// 4. Create connections
d2_oracle_create({ diagram_id: "architecture", key: "web -> api" })
d2_oracle_create({ diagram_id: "architecture", key: "api -> db" })
// 5. Export final result
d2_export({ diagramId: "architecture", format: "svg" })Starting with existing content (unified approach):
// 1. Create diagram with initial content
d2_create({
id: "architecture",
content: "web -> api -> db\ndb: {shape: cylinder}"
})
// 2. Enhance incrementally using Oracle API
d2_oracle_set({ diagram_id: "architecture", key: "web.label", value: "Web Server" })
d2_oracle_create({ diagram_id: "architecture", key: "cache" })
d2_oracle_create({ diagram_id: "architecture", key: "api -> cache" })
// 3. Export final result
d2_export({ diagramId: "architecture", format: "svg" })When to Use Each Tool
d2_create: Create a stored source document, optionally bound to a named workspace root
d2_update_source: Author or replace any complete D2 v0.9 document atomically
d2_oracle_*: Make convenient structured edits; each mutation is revalidated before commit
d2_get_source: Retrieve the canonical source after either editing workflow
d2_help / d2_capabilities: Discover supported syntax, composition, layouts, and exports
d2_export / d2_save: Render in memory or save within an allowed workspace root
Development
Running tests
# Run all tests
make test
# Run with coverage
go test -cover ./...
# Run specific test
go test -v ./internal/presentation/handlerCode Quality
# Format code
make fmt
# Run linter
make lint
# Clean build artifacts
make cleanAdding new features
Define entities in
internal/domain/entityAdd repository interfaces in
internal/domain/repositoryImplement business logic in
internal/usecaseAdd infrastructure implementations
Create MCP handlers in
internal/presentation/handlerWire dependencies in
cmd/main.go
Project Structure
cmd/: Application entry point
internal/domain/: Core business logic and entities
internal/infrastructure/: External service integrations
internal/presentation/: MCP protocol handlers
internal/usecase/: Application business logic
Troubleshooting
Export Limit Errors
PNG, PDF, PPTX, and GIF exports are produced by D2's bundled Go raster pipeline. If a diagram exceeds a resource ceiling, reduce its scale or board count, select a specific boardPath, or set an allowed bounded maxWidth, maxHeight, maxPixels, maxFrames, or maxOutputBytes value.
MCP Connection Issues
Ensure the binary has execute permissions:
chmod +x d2mcpCheck Claude Desktop logs for error messages
Verify the path in your configuration is absolute
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Changelog
v0.5.0 (Latest)
Added SSE (Server-Sent Events) transport support for network connectivity
Added Streamable HTTP transport support for modern bidirectional communication
New command-line flags for transport configuration
Support for stateful and stateless modes in Streamable HTTP
Maintained backward compatibility with stdio transport
Improved error handling and logging for different transport modes
v0.4.0
Simplified API to unified
d2_createfor all diagram creation needsEnhanced tool descriptions for better AI assistant integration
Improved Oracle API error handling and validation
Reduced API surface from 14 to 10 tools
Breaking Change: Removed d2_render, d2_render_to_file, d2_import, d2_from_text - use d2_create instead
v0.3.0
Added
d2_oracle_serializetool to get current D2 text representation
v0.2.0
Added D2 Oracle API integration for incremental diagram manipulation
6 new MCP tools for creating, modifying, and querying diagram elements
Support for stateful diagram editing sessions
v0.1.0
Initial release with basic D2 diagram operations
Support for rendering, creating, exporting, and saving diagrams
20 built-in themes
MCP protocol integration
License
This project is licensed under the MIT License - see the LICENSE file for details.
This server cannot be deployed
Maintenance
Related MCP Connectors
Create and edit collaborative architecture diagrams with any AI assistant using the Trident 2D DSL.
Create workflow, sequence, architecture, and mind map diagrams via AI assistants.
Generate dynamic Mermaid diagrams and charts with AI assistance. Customize styles and export diagr…
Generate, edit, and export data-architecture diagrams from your AI. Column lineage, PNG in chat.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to compile, validate, and explore D2 diagrams using the official D2 WASM package. It provides tools for generating SVGs with custom layouts, themes, and icons directly from D2 source code.1-
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to create and edit draw.io diagrams programmatically, supporting a wide range of diagram types and styles.5MIT
- FlicenseNot gradedqualityFmaintenanceEnables AI assistants to create, read, and manage Draw.io diagrams programmatically through natural language interactions.1-
- AlicenseBqualityBmaintenanceEnables AI assistants to create and manage one BPMN 2.0 diagram at a time, including Mermaid conversion, validation, layout, persistence, and XML or SVG export.27MIT