MCP.so
ログイン

Mermaid MCP Server

@peng-shawn

Mermaid MCP Server について

A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images

基本情報

カテゴリ

その他

ライセンス

MIT

ランタイム

node

トランスポート

stdio

公開者

peng-shawn

投稿者

Shawn Peng

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "mermaid-mcp-server": {
      "command": "npx",
      "args": [
        "tsc"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Mermaid MCP Server?

Mermaid MCP Server converts Mermaid diagram code into PNG images or SVG files. It uses Puppeteer for headless browser rendering and implements the Model Context Protocol (MCP) so AI assistants and other applications can generate visual diagrams from textual descriptions.

How to use Mermaid MCP Server?

Run the server with npx -y @peng-shawn/mermaid-mcp-server. Configure it as an MCP tool in Claude Desktop, Cursor, or Cline using the provided JSON entries. The server exposes a single generate tool that accepts parameters code, theme, backgroundColor, outputFormat, name, and folder. Set the environment variable CONTENT_IMAGE_SUPPORTED to true (default) for inline images or false to save to disk.

Key features of Mermaid MCP Server

  • Converts Mermaid code to PNG or SVG
  • Supports four diagram themes: default, forest, dark, neutral
  • Customizable background colors
  • Uses Puppeteer for high‑quality rendering
  • Implements MCP protocol for seamless AI integration
  • Returns images inline or saves them to disk

Use cases of Mermaid MCP Server

  • Generate flowcharts, sequence diagrams, and class diagrams in AI assistants
  • Create diagrams with specific themes and background colors
  • Save diagram files to disk when inline images are not supported (e.g., Cursor)
  • Automate diagram generation in MCP‑compatible tools

FAQ from Mermaid MCP Server

Does Claude desktop already support Mermaid via canvas?

Yes, but it does not support the theme and backgroundColor options. A dedicated server makes it easier to create Mermaid diagrams with different MCP clients.

Why do I need to set CONTENT_IMAGE_SUPPORTED=false when using with Cursor?

Cursor does not support inline images in responses yet. Setting the variable to false saves the diagram to disk and returns the file path.

What are the runtime dependencies?

The server requires Node.js (to run the npx command) and relies on Puppeteer’s bundled Chromium or a system‑installed Chrome/Chromium for headless rendering.

How are generated images returned or stored?

When CONTENT_IMAGE_SUPPORTED=true (default), the image or SVG is returned inline in the MCP response. When false, the file is saved to the specified folder and the file path is returned.

Which transport does the server use?

The server communicates over stdio using the MCP protocol. It can be tested and debugged with the MCP Inspector (npx @modelcontextprotocol/inspector).

コメント

「その他」の他のコンテンツ