MCP Diagram Server

MCP Diagram Server

Enables creating, manipulating, and managing Mermaid diagrams with automatic saving and multi-format conversion from JSON, CSV, Python, Markdown, and plain text.

Category
访问服务器

README

MCP Diagram Server 📊

A powerful Model Context Protocol (MCP) server for creating, manipulating, and managing Mermaid diagrams with automatic saving and integrated multi-format support. Built with enterprise-grade persistence and designed for seamless AI workflow integration.

🌟 Key Features

🔄 Automatic Saving & Library System

  • Auto-save on creation/modification - Never lose your work
  • Persistent diagram library stored in /diagrams directory
  • Metadata tracking with creation/modification timestamps
  • Instant load from disk - Diagrams persist across sessions

📁 Integrated Multi-Format Support

  • JSON → Flowcharts (hierarchical structure visualization)
  • CSV → Organizational/Relationship charts
  • Python Code → Class diagrams (automatic AST parsing)
  • Markdown → Mind maps (hierarchical content mapping)
  • Plain Text → Structured diagrams (with indentation detection)

🎨 Rich Diagram Types

  • Flowcharts - Process flows and decision trees
  • Sequence Diagrams - Interaction sequences
  • Mind Maps - Concept organization and brainstorming
  • Gantt Charts - Project timelines and scheduling
  • Class Diagrams - Object-oriented system design
  • Entity Relationship - Database schema visualization
  • User Journey Maps - Experience flow mapping
  • Git Graphs - Version control visualization
  • Pie Charts - Data visualization
  • State Diagrams - State machine modeling

🛠 Professional Tools

  • Template Library with 8+ pre-built diagram templates
  • Custom save locations in addition to auto-saving
  • Smart format detection with conversion recommendations
  • Resource access for MCP integration
  • Background processing with robust task management

Note: If there is a syntax error converting a diagram remove any () in the underlined code error.

alt text

alt text

alt text

🚀 Quick Start- Simply clone the repository and add the following

Claude Desktop Configuration

Add to your Claude Desktop MCP configuration:

{
  "mcpServers": {
    "diagram-server": {
      "command": "uv",
      "args": [
        "--directory",
        "/your-path-to/mcp-diagram-server",
        "run",
        "main.py"
      ],
      "env": {
        "LOG_LEVEL": "INFO"
      }
    }
  }
}

Installation- will auto-install with config

  1. Clone the repository:
cd /mcp-diagram-server
  1. Set up the Python environment:
uv venv --python 3.12 --seed
source .venv/bin/activate
uv add -e .
  1. Optional - Install Playwright for rendering:
uv add playwright
uv run playwright install chromium

📚 Available MCP Tools

Core Diagram Operations

  • create_diagram - Create new diagrams with optional templates
  • update_diagram - Modify existing diagram content (auto-saves)
  • get_diagram - Retrieve diagrams from memory or disk
  • list_diagrams - Browse your diagram library
  • delete_diagram - Remove diagrams from memory

Format Conversion Tools

  • convert_format_to_diagram - Universal format converter with auto-detection
  • json_to_flowchart - Convert JSON structures to flowcharts
  • csv_to_org_chart - Convert CSV data to organizational/relationship charts
  • python_to_class_diagram - Convert Python code to class diagrams
  • markdown_to_mindmap - Convert structured markdown to mind maps
  • detect_file_format - Smart format detection with conversion recommendations

Library Management

  • save_diagram - Manual save to custom locations
  • list_templates - Browse available diagram templates
  • Auto-saving - Automatic persistence (always active)

💡 Usage Examples

Universal Format Conversion

convert_format_to_diagram(
    content='{"api": {"users": ["get", "post"], "orders": ["get", "create"]}}',
    target_type="flowchart",
    name="APIStructure"
)

Result: Auto-saved flowchart showing API structure hierarchy

JSON to Flowchart

json_to_flowchart(
    json_content='{"system": {"frontend": "React", "backend": "FastAPI", "db": "PostgreSQL"}}',
    name="SystemArchitecture"
)

Result: Visual flowchart of system components and relationships

CSV to Organizational Chart

csv_to_org_chart(
    csv_content="Name,Role,Department\nAlice,Director,Engineering\nBob,Engineer,Engineering",
    name="TeamStructure"
)

Result: Organizational chart showing team hierarchy

Python Code to Class Diagram

python_to_class_diagram(
    python_code='''
class DatabaseManager:
    def __init__(self):
        self.connection = None
    def connect(self):
        pass
    def query(self, sql):
        pass
''',
    name="DatabaseDesign"
)

Result: UML class diagram from Python code structure

Smart Format Detection

detect_file_format(
    content='class User:\n    def __init__(self):\n        pass',
    filename="models.py"
)

Result: Format identification with conversion recommendations

Create with Template

create_diagram(diagram_type="sequence", use_template=True, name="UserFlow")

Result: Auto-saved sequence diagram template ready for customization

🔧 Understanding Save Systems

Auto-Save (Always Active)

  • When: Every diagram creation and modification
  • Where: /diagrams directory with metadata
  • Format: .mmd file + _metadata.json
  • Purpose: Prevent data loss, maintain library

Manual Save (save_diagram)

  • When: On-demand via tool call
  • Where: Custom locations you specify
  • Format: .mmd file + _metadata.json
  • Purpose: Backups, exports, custom workflows

Both systems work together - Auto-save maintains your library while manual save provides flexibility.

📁 Library Structure

diagrams/
├── SystemArchitecture_converted_20250824_120000.mmd
├── SystemArchitecture_converted_20250824_120000_metadata.json
├── TeamStructure_converted_20250824_130000.mmd
├── TeamStructure_converted_20250824_130000_metadata.json
├── UserFlow_diagram_20250824_140000.mmd
└── UserFlow_diagram_20250824_140000_metadata.json

🎯 Format Conversion Pipeline

The integrated conversion system handles multiple input formats:

JSON Processing

  • Auto-detects nested JSON structures
  • Generates hierarchical flowcharts showing data relationships
  • Preserves key-value relationships and array structures

CSV Analysis

  • Parses CSV headers and relationships
  • Creates organizational charts or network diagrams
  • Handles employee/role data and relationship matrices

Python AST Parsing

  • Analyzes Python source code structure
  • Extracts classes, methods, and inheritance relationships
  • Generates UML class diagrams with method signatures

Plain Text Intelligence

  • Detects indentation patterns and structure
  • Converts to hierarchical mind maps
  • Processes bullet points and numbered lists

Smart Detection

  • Content analysis for format identification
  • File extension recognition when available
  • Conversion recommendations for optimal diagram types

🛡️ Enterprise Features

  • Robust Error Handling: Comprehensive exception management
  • Process Management: Background task cleanup and monitoring
  • Data Integrity: Metadata validation and consistency checks
  • Session Persistence: Diagrams survive server restarts
  • Format Validation: Input validation for all supported formats
  • Concurrent Access: Safe multi-client diagram access

🔄 Workflow Integration

Perfect for:

  • AI-Powered Diagramming: Let AI create and modify diagrams from any format
  • Documentation Generation: Convert data structures to visual documentation
  • Process Visualization: Transform workflows into clear diagrams
  • Code Architecture: Generate system diagrams from source code
  • Data Visualization: Convert CSVs and JSON to visual representations
  • Knowledge Mapping: Convert any structured content to mind maps

📝 License

MIT License - See LICENSE file for details

🤝 Contributing

Contributions welcome! The codebase follows modern Python patterns with comprehensive error handling and robust process management.

🙏 Acknowledgments

  • Inspired by Drawnix - Open-source whiteboard tool
  • Built with FastMCP
  • Powered by Mermaid diagram syntax
  • Format conversion powered by Python AST parsing and intelligent structure analysis

📞 Support

For issues or questions, please open an issue on GitHub.


System Requirements: Python 3.10+ | Compatible with Claude Desktop and MCP-enabled clients

🚀 Ready to convert any format to diagrams? Start creating visual representations from JSON, CSV, Python code, and more with automatic saving!

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选