Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

AI-powered Mermaid diagram generation with 22+ diagram types including flowcharts, sequence diagrams, class diagrams, ER diagrams, architecture diagrams, state machines, and more.

README.md

Mermaid MCP Server

AI-powered Mermaid diagram generation using Model Context Protocol (MCP)

![npm version](https://www.npmjs.com/package/@narasimhaponnada/mermaid-mcp-server) ![npm downloads](https://www.npmjs.com/package/@narasimhaponnada/mermaid-mcp-server) ![Node.js](https://nodejs.org/) ![License](LICENSE) ![MCP](https://modelcontextprotocol.io/) ![Mermaid](https://mermaid.js.org/)

🎯 Overview

The Mermaid MCP Server enables AI assistants like GitHub Copilot, Claude, and custom LLM applications to generate professional architecture diagrams, flowcharts, sequence diagrams, and more using natural language. It provides a Model Context Protocol interface for seamless integration with AI coding assistants.

✨ Key Features

  • 🤖 AI-Powered Generation: Create diagrams using natural language with GitHub Copilot or Claude
  • 🎨 Production-Ready SVGs: XML-compliant, validated SVG files ready for any use
  • 📦 50+ Pre-built Templates: Architecture patterns, workflows, and data models
  • 🔧 Multiple Integrations: VS Code, Claude Desktop, Cursor IDE, CLI, and custom apps
  • 🚀 22+ Diagram Types: Flowcharts, sequences, ERDs, state machines, Gantt charts, and more
  • Fast & Reliable: Browser-based rendering with Puppeteer for consistent output

📋 What's Included

Mermaid/
├── mermaid-mcp-server/          # Main MCP server
│   ├── src/                     # TypeScript source code
│   ├── dist/                    # Compiled JavaScript
│   ├── examples/architectures/  # 5 production-ready SVG samples
│   ├── package.json             # Dependencies
│   └── README.md                # Server documentation
├── Setup.md                     # Complete setup guide
├── UserGuide.md                 # Comprehensive usage guide
└── *.md                         # Analysis and documentation

🚀 Quick Start

Prerequisites

  • Node.js 18 or higher
  • npm or yarn
  • GitHub Copilot (recommended) or Claude Desktop

Installation

Option 1: Install from NPM (Recommended)

# Global installation - easiest way to get started
npm install -g @narasimhaponnada/mermaid-mcp-server

# Test the installation
mermaid-mcp --version

# The server is now ready to use with Copilot/Claude!

Option 2: Install from Source

# Clone the repository
git clone https://github.com/Narasimhaponnada/mermaid-mcp.git
cd mermaid-mcp/mermaid-mcp-server

# Install dependencies
npm install

# Build the server
npm run build

# Generate sample diagrams
node generate-svg-samples.js

Configure with GitHub Copilot

Add to your VS Code settings (Cmd+Shift+P → "Preferences: Open User Settings (JSON)"):

If installed via NPM globally: ``json { "github.copilot.mcp.servers": { "mermaid": { "command": "mermaid-mcp" } } } ``

If installed from source: ``json { "github.copilot.mcp.servers": { "mermaid": { "command": "node", "args": ["/absolute/path/to/mermaid-mcp-server/dist/index.js"] } } } ``

Use with Copilot

Open GitHub Copilot Chat and try:

Create a microservices architecture diagram for an e-commerce platform
Generate a CI/CD pipeline flowchart showing GitHub Actions workflow
Show me a sequence diagram for user authentication with OAuth

📚 Documentation

🎨 Diagram Types Supported

  • Process Diagrams: Flowcharts, Block Diagrams
  • Interactions: Sequence Diagrams, User Journeys, Timelines
  • Structure: Class Diagrams, ER Diagrams, C4 Diagrams, Architecture
  • Data Visualization: Pie Charts, XY Charts, Sankey, Radar, Quadrant, Treemap
  • Project Management: Gantt Charts, Requirement Diagrams, Kanban Boards
  • Specialized: State Diagrams, Git Flow, Mindmaps, Packet Diagrams

🔌 Integration Methods

  1. GitHub Copilot in VS Code - Daily development workflow
  2. Claude Desktop - Standalone diagram generation
  3. Cursor IDE - AI-first development
  4. Direct CLI - Automation and scripting
  5. MCP Inspector - Testing and debugging
  6. Custom Applications - Build your own integrations

💡 Use Cases

  • 📖 Documentation: Auto-generate architecture diagrams for docs
  • 🔄 Code Reviews: Include diagrams in pull requests
  • 👥 Onboarding: Visual guides for new developers
  • 📊 Technical Proposals: Explain changes with visuals
  • 🚨 Incident Response: Document incidents with timelines
  • 💼 Client Presentations: Explain technical concepts visually
  • 📚 Training Materials: Create consistent learning resources

🌟 Example Output

The server generates production-ready SVG files like these (included in examples/architectures/):

  • microservices-architecture.svg (27KB) - Microservices with API Gateway
  • cloud-infrastructure.svg (31KB) - Cloud infrastructure components
  • cicd-pipeline.svg (28KB) - Complete CI/CD workflow
  • data-pipeline.svg (24KB) - ETL data processing pipeline
  • serverless-architecture.svg (31KB) - Event-driven serverless

All SVGs are XML-validated and render perfectly in browsers, documentation, and presentations.

🛠️ Technology Stack

  • Node.js - Server runtime
  • TypeScript - Type-safe development
  • Puppeteer - Browser-based rendering
  • Mermaid v10 - Diagramming library (via CDN)
  • MCP SDK - Model Context Protocol implementation

📈 Project Status

  • Production-Ready: All core features implemented and tested
  • Validated: All SVG outputs are XML-compliant
  • Documented: Comprehensive guides and examples
  • Clean Codebase: 43 essential files, no cruft
  • Battle-Tested: Fixed HTML-to-XML tag issues, subgraph syntax, etc.

🤝 Contributing

Contributions are welcome! Please feel free to:

  • Report bugs and issues
  • Suggest new diagram types or features
  • Submit pull requests
  • Share usage examples and best practices

📄 License

MIT License - see mermaid-mcp-server/LICENSE for details

🙏 Acknowledgments

  • Mermaid.js - Amazing diagramming library
  • Model Context Protocol - Enabling AI tool integration
  • GitHub Copilot - AI-powered development
  • Puppeteer - Reliable browser automation

📞 Support

  • 📖 Documentation: See Setup.md and UserGuide.md
  • 🐛 Issues: Open an issue on GitHub
  • 💬 Discussions: Start a discussion for questions
  • 📧 Contact: Via GitHub profile

🚀 Getting Started

  1. Read the setup guide: Setup.md
  2. Install and configure: Follow the quick start above
  3. Try it out: Generate your first diagram with Copilot
  4. Explore use cases: Check UserGuide.md
  5. Integrate into your project: Use one of 6 integration methods

---

Last Updated: October 30, 2025 Author: Narasimha Rao Ponnada Version: 1.0.0

Start creating amazing diagrams with AI! 🎨📊✨

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.