npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iflow-mcp/avcharov-mermaid-mcp-app

v1.0.0

Published

Streamable Mermaid diagram MCP App server

Readme

Mermaid MCP App

A streamable MCP App server that renders interactive Mermaid diagrams with live preview, theme switching, and fullscreen editing.

Demo

Mermaid MCP App Demo

Interactive diagram editing with live preview, pan/zoom controls, and fullscreen mode

Features

  • Complete Rendering - Waits for full diagram generation before displaying (no partial/streaming output)
  • SVGO Optimization - Automatic SVG optimization reduces file size by ~85%
  • Dark Mode - Auto-detects system theme with neutral gray palette
  • Interactive Pan/Zoom - Navigate large diagrams with wheel zoom and drag controls
  • Fullscreen Editor - Edit Mermaid syntax with live preview, zoom controls (+/−/1:1)
  • Theme Switching - Light, Dark, or Custom (agent-provided) themes
  • All Diagram Types - Flowcharts, sequence, class, state, ER, gantt, pie, git graphs, and more
  • Export with Spinner - Copy SVGO-optimized SVG to clipboard (spinner indicates progress)
  • Client-side Rendering - No server dependencies, runs entirely in the browser

Quick Start

Remote (Vercel)

Use the hosted endpoint: https://mermaid-mcp-app.vercel.app/mcp

Add as a remote MCP server in your client. For example, in claude.ai: SettingsConnectorsAdd custom connector → paste the URL above.

Installation

npm install

Development

Start the development server with hot-reload:

npm run dev

The server will start at http://localhost:3001/mcp

Build

Build for production:

npm run build

This creates:

  • dist/mcp-app.html - Single-file bundled UI
  • dist/server.js - MCP server
  • dist/index.js - CLI entry point

Usage

Local (HTTP)

npm run serve
# or
node dist/index.js

Local (stdio)

node dist/index.js --stdio

Vercel Deployment

Deploy to Vercel for remote access:

npx vercel

The MCP endpoint will be available at https://mermaid-mcp-app.vercel.app/mcp

MCP Tools

read_me

Returns comprehensive Mermaid syntax reference with examples for all diagram types.

Usage: Call this before create_view to learn Mermaid syntax.

create_view

Renders a Mermaid diagram. The diagram is fully rendered before being displayed (no progressive/streaming rendering).

Parameters:

  • mermaid (string, required) - Mermaid diagram syntax
  • theme (string, optional) - One of: default (auto-detect), forest, dark, neutral, base
  • title (string, optional) - Title to display above the diagram

Notes:

  • Default theme auto-detects system dark mode and applies neutral gray palette
  • Agent can specify built-in Mermaid themes (forest, dark, neutral, base) which appear as "Custom" in UI
  • Fullscreen mode includes zoom controls (+, −, 1:1, wheel zoom) and pan/drag

Example:

{
  "mermaid": "flowchart TD\n  A[Start] --> B[End]",
  "theme": "forest",
  "title": "Simple Flow"
}

export_svg (app-only)

Export the rendered diagram as optimized SVG using SVGO. Called by the UI export button (spinner icon during processing).

Optimization:

  • SVGO reduces SVG size by ~85% (e.g., 334KB → 51KB)
  • Rounds coordinates to 2 decimal places
  • Preserves viewBox and mermaid IDs for proper rendering

Architecture

  • Server: Node.js with Express + MCP SDK
    • Supports both Streamable HTTP and stdio transports
    • Stateless per-request design (no sessions)
  • UI: React 19 with Mermaid.js
    • Loaded from CDN (jsdelivr for Mermaid, esm.sh for React) via importmap
    • Client-side rendering for zero server dependencies
    • Single-file HTML bundle (~402KB) via Vite + vite-plugin-singlefile
    • SVGO server-side optimization for exports
  • Build: TypeScript + Vite + Bun
    • Type-safe server and client code
    • Optimized production bundles

File Structure

mermaid-mcp-app/
├── src/
│   ├── server.ts          # MCP server with tool registration + SVGO
│   ├── main.ts            # Transport layer (HTTP + stdio)
│   ├── mcp-app.html       # HTML shell with importmap
│   ├── mcp-app.tsx        # React UI component
│   ├── theme-vars.ts      # Mermaid theme color palettes
│   └── global.css         # Styles (dark mode, animations)
├── api/
│   └── mcp.ts            # Vercel serverless handler
├── dist/                  # Build output
├── scripts/
│   └── setup-bun.mjs     # Auto-install bun
├── package.json
├── tsconfig.json          # Client TS config
├── tsconfig.server.json   # Server TS config
├── vite.config.ts         # Vite bundler config
├── vercel.json           # Vercel deployment config
└── manifest.json         # MCP app manifest

Technologies

License

MIT