.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/hustcc/mcp-mermaid
home/mcp-servers/hustcc/mcp-mermaid
hustcc avatar

mcp-mermaid

byhustcc· 2 MCP servers

Stars

615

Forks

55

Category

Generative Media

View on GitHub

TL;DR

  • Fully support all features and syntax of Mermaid. - Support configuration of backgroundColor and theme, enabling large AI models to output rich style configurations.
  • How to install mcp-mermaid?

    hustcc/mcp-mermaid
    $git clone https://github.com/hustcc/mcp-mermaid

    Installs into the current project.

    ›Prefer a prompt? Paste this to your agent

    Install & use

    Install mcp-mermaid by running `git clone https://github.com/hustcc/mcp-mermaid`, then use it for the current task and follow its documentation at https://github.com/hustcc/mcp-mermaid.

    Files · 1

    View on GitHub
    README.md
    1# <img src="https://mermaid.js.org/favicon.svg" height="24"/> MCP Mermaid ![](https://badge.mcpx.dev?type=server 'MCP Server') [![build](https://github.com/hustcc/mcp-mermaid/actions/workflows/build.yml/badge.svg)](https://github.com/hustcc/mcp-mermaid/actions/workflows/build.yml) [![npm Version](https://img.shields.io/npm/v/mcp-mermaid.svg)](https://www.npmjs.com/package/mcp-mermaid) [![smithery badge](https://smithery.ai/badge/@hustcc/mcp-mermaid)](https://smithery.ai/server/@hustcc/mcp-mermaid) [![npm License](https://img.shields.io/npm/l/mcp-mermaid.svg)](https://www.npmjs.com/package/mcp-mermaid) [![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/hustcc/mcp-mermaid)](https://archestra.ai/mcp-catalog/hustcc__mcp-mermaid)
    2 
    3Generate <img src="https://mermaid.js.org/favicon.svg" height="14"/> [mermaid](https://mermaid.js.org/) diagram and chart with AI MCP dynamically. Also you can use:
    4 
    5- <img src="https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*ZFK8SrovcqgAAAAAAAAAAAAAemJ7AQ/original" height="14"/> [mcp-server-chart](https://github.com/antvis/mcp-server-chart) to generate chart, graph, map.
    6- <img src="https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*EdkXSojOxqsAAAAAQHAAAAgAemJ7AQ/original" height="14"/> [Infographic](https://github.com/antvis/Infographic) to generate infographic, such as `Timeline`, `Comparison`, `List`, `Process` and so on.
    7- 🖼️ [figure.ling.pub/gallery](https://figure.ling.pub/gallery) to browse and share AI-generated diagrams and figures created with mcp-mermaid and other tools.
    8 
    9 
    10## ✨ Features
    11 
    12- Fully support all features and syntax of `Mermaid`.
    13- Support configuration of `backgroundColor` and `theme`, enabling large AI models to output rich style configurations.
    14 
    15- Support exporting to `base64`, `svg`, `mermaid`, `file`, and remote-friendly `svg_url`, `png_url` formats, with validation for `Mermaid` to facilitate the model's multi-round output of correct syntax and graphics. Use `outputType: "file"` to automatically save PNG diagrams to disk for AI agents, or the URL modes to share diagrams through public mermaid.ink links.
    16 
    17 
    18<img width="720" alt="mcp-mermaid" src="https://mermaid.js.org/header.png" />
    19 
    20 
    21## 🤖 Usage
    22 
    23To use with `Desktop APP`, such as Claude, VSCode, Cline, Cherry Studio, and so on, add the MCP server config below. On Mac system:
    24 
    25```json
    26{
    27 "mcpServers": {
    28 "mcp-mermaid": {
    29 "command": "npx",
    30 "args": [
    31 "-y",
    32 "mcp-mermaid"
    33 ]
    34 }
    35 }
    36}
    37```
    38 
    39On Window system:
    40 
    41```json
    42{
    43 "mcpServers": {
    44 "mcp-mermaid": {
    45 "command": "cmd",
    46 "args": [
    47 "/c",
    48 "npx",
    49 "-y",
    50 "mcp-mermaid"
    51 ]
    52 }
    53 }
    54}
    55```
    56 
    57Also, you can use it on aliyun, modelscope, glama.ai, smithery.ai or others with HTTP, SSE Protocol.
    58 
    59**Access Points:**
    60- SSE: `http://localhost:3033/sse`
    61- Streamable: `http://localhost:1122/mcp`
    62 
    63**Available Docker Tags:**
    64- `susuperli/mcp-mermaid:latest` - Latest stable version
    65- View all available tags at [Docker Hub](https://hub.docker.com/repository/docker/susuperli/mcp-mermaid/tags)
    66 
    67 
    68## 🚰 Run with SSE or Streamable transport
    69 
    70### Option 1: Global Installation
    71 
    72Install the package globally:
    73 
    74```bash
    75npm install -g mcp-mermaid
    76```
    77 
    78Run the server with your preferred transport option:
    79 
    80```bash
    81# For SSE transport (default endpoint: /sse)
    82mcp-mermaid -t sse
    83 
    84# For Streamable transport with custom endpoint
    85mcp-mermaid -t streamable
    86```
    87 
    88### Option 2: Local Development
    89 
    90If you're working with the source code locally:
    91 
    92```bash
    93# Clone and setup
    94git clone https://github.com/hustcc/mcp-mermaid.git
    95cd mcp-mermaid
    96npm install
    97npm run build
    98 
    99# Run with npm scripts
    100npm run start:sse # SSE transport on port 3033
    101npm run start:streamable # Streamable transport on port 1122
    102```
    103 
    104### Access Points
    105 
    106Then you can access the server at:
    107 
    108- SSE transport: `http://localhost:3033/sse`
    109- Streamable transport: `http://localhost:1122/mcp` (local) or `http://localhost:3033/mcp` (global)
    110 
    111## 🎮

    Preview

    hustcc/mcp-mermaidhustcc/mcp-mermaid

    # <img src="https://mermaid.js.org/favicon.svg" height="24"/> MCP Mermaid ![](https://badge.mcpx.dev?type=server 'MCP Server') [![build](https://github.com/hus

    Generate <img src="https://mermaid.js.org/favicon.svg" height="14"/> [mermaid](https://mermaid.js.org/) diagram and chart with AI MCP dynamically. Also you can

    - <img src="https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*ZFK8SrovcqgAAAAAAAAAAAAAemJ7AQ/original" height="14"/> [mcp-server-chart](https://github.com/

    - <img src="https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*EdkXSojOxqsAAAAAQHAAAAgAemJ7AQ/original" height="14"/> [Infographic](https://github.com/antvi

    Repohustcc/mcp-mermaid
    TypeMCP Servers
    CategoryGenerative Media
    UpdatedMay 2026
    LicenseMIT
    First seenJul 27, 2026

    Tags

    MCPmcpmcp-server

    Related

    6 picks
    Type
    1. artokun avatarcomfyui-mcpMCP server + Claude Code plugin for ComfyUI: run workflows, generate images, manage models & VRAM.MCP ServersJul 2026110k455
    2. elevenlabs avatarelevenlabs-mcpMCP server that enables interaction with Text to Speech, Voice Agents and audio processing APIsMCP ServersJul 202653k1.5k
    3. monet-ai-editor avatarmonetElectron video editor with terminal-first controls, transcription, embeddings, and exportMCP ServersJul 202646k99
    4. zhongweili avatarnanobanana-mcp-serverAI image generation with Gemini 3 Pro (4K) and 2.5 Flash. Smart model selection.MCP ServersMay 202612k385
    5. minimax-ai avatarminimax-mcpMinimax MCP ServerMCP ServersMay 20269.6k1.5k
    6. kyanitelabs avatarkinocutGuardrailed video editing for AI agents: FFmpeg, captions, effects, Hyperframes, and receipts.MCP ServersJul 20269.6k95