Cover image
Try Now
2025-04-01

MCP服务器提供用于验证和渲染美人鱼图的工具。

3 years

Works with Finder

1

Github Watches

0

Github Forks

1

Github Stars

Mermaid MCP Server

npm version

A Model Context Protocol (MCP) server providing tools for validating and rendering Mermaid diagrams.

This server allows AI assistants (like Roo) to interact with Mermaid diagrams, check their syntax, render them into SVG format, and access documentation links.

Features

  • Validate Mermaid Syntax: Check if the provided Mermaid code is syntactically correct.
  • Render to SVG: Convert valid Mermaid code into SVG image format.
  • Get Documentation Link: Provide a link to the official Mermaid documentation.

Prerequisites

  • Node.js (v18 or later recommended)
  • npm or yarn
  • A compatible MCP client (e.g., Roo Cline VSCode Extension)

This server uses @mermaid-js/mermaid-cli internally, which relies on Puppeteer to render diagrams. Puppeteer will download a compatible version of Chromium if not found. Ensure you have network connectivity during the first run or when dependencies are updated.

Installation

You can install this server globally or locally within your project. However, for use with MCP clients like Roo Cline, it's typically configured via the client's settings file rather than installed directly into your development project.

Using with Roo Cline (Recommended):

  1. Install the package globally (or note the path if installed locally):

    npm install -g mermaid-mcp-server
    

    (Alternatively, if you clone this repository and build it, note the absolute path to the build/index.js file.)

  2. Configure Roo Cline: Open Roo Cline's MCP settings file. The location depends on your OS and VSCode setup:

    • macOS: ~/Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/mcp_settings.json
    • Windows: %APPDATA%\Code\User\globalStorage\rooveterinaryinc.roo-cline\settings\mcp_settings.json
    • Linux: ~/.config/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/mcp_settings.json

    Add the following configuration to the mcpServers object:

    {
      "mcpServers": {
        // ... other servers
        "mermaid-mcp-server": {
          // If installed globally:
          "command": "mermaid-mcp-server",
          // If built from source, use the absolute path:
          // "command": "node",
          // "args": ["/absolute/path/to/mermaid-mcp-server/build/index.js"],
          "disabled": false,
          "alwaysAllow": [] // Add tool names here if you want to skip confirmation
        }
        // ... other servers
      }
    }
    

    Replace /absolute/path/to/mermaid-mcp-server/build/index.js with the actual path if you built the server from source.

  3. Restart VSCode or reload the window to ensure Roo Cline picks up the new server configuration.

Available Tools

Once configured, the following tools will be available to the AI assistant:

  • validate_mermaid:

    • Description: Validate Mermaid syntax without rendering.
    • Input: { "mermaid_code": "string" }
    • Output: Text indicating success or failure with error details.
  • render_mermaid_svg:

    • Description: Render Mermaid code to SVG format.
    • Input: { "mermaid_code": "string" }
    • Output: SVG content as text (mimeType: 'image/svg+xml') or an error message.
  • get_mermaid_docs_link:

    • Description: Get a link to the official Mermaid documentation.
    • Input: {} (No input required)
    • Output: Text containing the URL.

Development

  1. Clone the repository:

    git clone https://github.com/TanisukeGoro/mermaid-mcp-server.git
    cd mermaid-mcp-server
    
  2. Install dependencies:

    npm install
    
  3. Build the server:

    npm run build
    

    (Use npm run watch for automatic rebuilding during development.)

  4. Test with the MCP Inspector:

    npm run inspector
    

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

License

MIT

相关推荐

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Alexandru Strujac
  • Efficient thumbnail creator for YouTube videos

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • Lists Tailwind CSS classes in monospaced font

  • lumpenspace
  • Take an adjectivised noun, and create images making it progressively more adjective!

  • https://appia.in
  • Siri Shortcut Finder – your go-to place for discovering amazing Siri Shortcuts with ease

  • Carlos Ferrin
  • Encuentra películas y series en plataformas de streaming.

  • Yusuf Emre Yeşilyurt
  • I find academic articles and books for research and literature reviews.

  • J. DE HARO OLLE
  • Especialista en juegos de palabras en varios idiomas.

  • apappascs
  • 发现市场上最全面,最新的MCP服务器集合。该存储库充当集中式枢纽,提供了广泛的开源和专有MCP服务器目录,并提供功能,文档链接和贡献者。

  • ShrimpingIt
  • MCP系列GPIO Expander的基于Micropython I2C的操作,源自ADAFRUIT_MCP230XX

  • jae-jae
  • MCP服务器使用剧作《无头浏览器》获取网页内容。

  • HiveNexus
  • 一个适用于中小型团队的AI聊天机器人,支持DeepSeek,Open AI,Claude和Gemini等车型。 专为中小团队设计的ai聊天应用,支持deepSeek,打开ai,claude,双子座等模型。

  • ravitemer
  • 一个功能强大的Neovim插件,用于管理MCP(模型上下文协议)服务器

  • patruff
  • Ollama和MCP服务器之间的桥梁,使本地LLMS可以使用模型上下文协议工具

    Reviews

    1 (1)
    Avatar
    user_haNUK21E
    2025-04-17

    Mermaid-mcp-server by abekdwight is a fantastic application for managing and configuring MCPs. The setup is straightforward, and the documentation on GitHub is clear and helpful. Being an open-source project, it offers great flexibility for customization. Overall, this server enhances the MCP experience significantly. Highly recommended!