diagram-mcp
Renders Mermaid diagrams and Plotly charts to SVG, PNG, or PDF formats via the Model Context Protocol.
README
Diagram MCP Server
A Model Context Protocol (MCP) server that renders Mermaid diagrams and Plotly charts, converting them to various image formats.
Features
- Mermaid Diagram Rendering: Convert Mermaid code to SVG, PNG, or PDF
- Plotly Chart Rendering: Convert Plotly charts to SVG, PNG, or PDF
- Image Conversion: Convert diagrams and charts to PNG, JPG, or PDF with customizable quality
- Multiple Themes: Support for default, dark, and forest themes (Mermaid)
- Customizable Output: Control dimensions, background colors, and quality settings
- TypeScript: Fully typed with Zod validation
Installation
Local Installation
pnpm install
Docker Installation
# Build and run with Docker
docker build -t diagram-mcp .
docker run -p 3000:3000 diagram-mcp
Development
# Start development server
pnpm run dev
# Build the project
pnpm run build
# Run tests
pnpm test
# Run tests with coverage
pnpm run test:coverage
# Docker commands
pnpm run docker:build # Build Docker image
pnpm run docker:run # Run Docker container
Usage
Available Tools
1. render_mermaid
Renders a Mermaid diagram to SVG, PNG, or PDF format.
Parameters:
mermaidCode(string, required): The Mermaid diagram codeformat(string, optional): Output format - 'svg', 'png', or 'pdf' (default: 'svg')theme(string, optional): Theme - 'default', 'dark', or 'forest' (default: 'default')backgroundColor(string, optional): Background color (default: '#ffffff')width(number, optional): Custom width in pixelsheight(number, optional): Custom height in pixels
Example:
{
"mermaidCode": "graph TD\n A[Start] --> B[End]",
"format": "svg",
"theme": "default"
}
2. render_plotly
Renders a Plotly chart to SVG, PNG, or PDF format.
Parameters:
plotlyCode(string, required): The Plotly chart code (JavaScript)format(string, optional): Output format - 'svg', 'png', or 'pdf' (default: 'svg')backgroundColor(string, optional): Background color (default: '#ffffff')width(number, optional): Custom width in pixelsheight(number, optional): Custom height in pixelsresponsive(boolean, optional): Make chart responsive (default: true)displayModeBar(boolean, optional): Show mode bar (default: false)displaylogo(boolean, optional): Show Plotly logo (default: false)
Example:
{
"plotlyCode": "Plotly.newPlot('plotly-chart', [{ x: [1,2,3], y: [1,2,4], type: 'scatter' }], { margin: { t: 0 } });",
"format": "png",
"width": 800,
"height": 600
}
3. convert_to_image
Converts a Mermaid diagram to PNG, JPG, or PDF image format.
Parameters:
mermaidCode(string, required): The Mermaid diagram codeformat(string, optional): Output format - 'png', 'jpg', or 'pdf' (default: 'png')theme(string, optional): Theme - 'default', 'dark', or 'forest' (default: 'default')backgroundColor(string, optional): Background color (default: '#ffffff')width(number, optional): Custom width in pixelsheight(number, optional): Custom height in pixelsquality(number, optional): Image quality 1-100 (default: 90)
Example:
{
"mermaidCode": "graph LR\n A[Input] --> B[Process] --> C[Output]",
"format": "png",
"theme": "dark",
"quality": 95
}
MCP Configuration
Add this to your MCP client configuration:
{
"mcpServers": {
"diagram-mcp": {
"command": "node",
"args": ["dist/index.js"],
"env": {}
}
}
}
sse: PORT=3919 TRANSPORT_TYPE=http npx diagram-mcp
{
"mcpServers": {
"diagram": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://localhost:3919/mcp",
"--allow-http"
]
}
}
}
Supported Chart Types
Mermaid Diagrams
The server supports all Mermaid diagram types:
- Flowcharts
- Sequence diagrams
- Class diagrams
- State diagrams
- Entity Relationship diagrams
- User Journey diagrams
- Gantt charts
- Pie charts
- Git graphs
- C4 diagrams
- Mindmaps
Plotly Charts
The server supports all Plotly chart types:
- Scatter plots
- Line charts
- Bar charts
- Histograms
- Box plots
- Violin plots
- Heatmaps
- 3D plots
- Contour plots
- Surface plots
- And many more...
Examples
Mermaid Flowchart
graph TD
A[Start] --> B{Is it working?}
B -->|Yes| C[Great!]
B -->|No| D[Debug]
D --> B
Mermaid Sequence Diagram
sequenceDiagram
participant Alice
participant Bob
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts <br/>prevail!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
Plotly Scatter Plot
Plotly.newPlot(
"plotly-chart",
[
{
x: [1, 2, 3, 4, 5],
y: [1, 2, 4, 8, 16],
type: "scatter",
mode: "lines+markers",
},
],
{
title: "Exponential Growth",
xaxis: { title: "X" },
yaxis: { title: "Y" },
}
);
Error Handling
The server provides detailed error messages for:
- Invalid Mermaid syntax
- Unsupported formats
- Browser initialization failures
- Screenshot generation errors
Dependencies
@modelcontextprotocol/sdk: MCP SDKmermaid: Mermaid diagram renderingpuppeteer: Browser automation for image conversionzod: Schema validationdotenv: Environment variable management
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.