Mermaider
FreeNot checkedValidates Mermaid diagram syntax using a persistent browser for fast, reliable checks.
About
Validates Mermaid diagram syntax using a persistent browser for fast, reliable checks.
README
Table of Contents
Overview
The mermaider is an MCP server that provides validate_syntax tool that checks all Mermaid diagram types for syntax errors.
For that, it uses puppeteer-core package and mermaid-js/mermaid API directly to efficiently use already installed Chrome-based or Firefox browser.
Efficiently means:
- The browser (with a new page) is opened and kept running headless (by default) for as long as this MCP server process is active – to achieve low-latency tool calls.
- Every
validate_syntaxtool call reuses the browser and the page.
Why using the browser at all?
Unfortunately, mermaid-js/mermaid relies on full browser context (DOM) for its functionality, even for parsing the diagrams. Packages like happy-dom or jsdom do not quite cut it.
The mermaider uses relatively light-weight puppeteer-core package (as opposed to full puppeteer) to access already installed browser.
The LLMs syntax problem
Modern LLMs typically are perfectly capable of generating Mermaid diagrams, however often lack ability to reliably check the generated syntax. This is where the mermaider MCP comes in.
What makes mermaider different?
There are other MCPs that can (sort of) validate Mermaid syntax, however, they typically work by launching mmdc command-line utility process every time respective tool is invoked (by the LLM).
That brings a few issues:
Speed: spawning
mmdcprocess, which (then itself launches the browser) for every tool call is slow and expensive.Non-determinism:
mmdc's purpose really is to generate images, not validate syntax. As such, occasionally it exits with 0 code and generates an image (like one below) for diagrams with broken syntax as opposed to exiting with non-zero code and spitting out an error message toSTDERR. In this case, MCP server that usesmmdcwould have no idea the error occurred so you end up with a bunch of these images instead of your diagrams.
Side Effects:
mmdcmay install Chrome browser unbeknownst to you as that is the default puppeteer's behaviour, quote:When you install Puppeteer, it automatically downloads a recent version of Chrome for Testing (~170MB macOS, ~282MB Linux, ~280MB Windows) and a chrome-headless-shell binary (starting with Puppeteer v21.6.0) that is guaranteed to work with Puppeteer. The browser is downloaded to the $HOME/.cache/puppeteer folder by default (starting with Puppeteer v19.0.0). See configuration for configuration options and environmental variables to control the download behavior.
Installation
In general, below is the command that your MCP client should use:
npx -y @vtomilin/mermaider <config>
Where <config> is either an inline JSON string, or a config file path, e.g.
npx -y @vtomilin/mermaider '{"executablePath": "/Applications/FirefoxDeveloperEdition.app/Contents/MacOS/firefox", "browser": "firefox"}'
Or:
npx -y @vtomilin/mermaider /home/user/etc/Firefox.json
Where /home/user/etc/Firefox.json is a JSON file containing the configuration, for example, for Firefox browser:
{
"executablePath": "/Applications/FirefoxDeveloperEdition.app/Contents/MacOS/firefox",
"browser": "firefox"
}
Another config file example, using the Brave (Chrome-based) browser:
{
"executablePath": "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser"
}
Complete list of available Browser configuration options defined in Puppeteer's Browser Launchoptions.
VSCode
Press Cmd-Shift-P (or Ctrl-Shift-P), then MCP: Add Server.... Select Command (stdio) Run a local command that implements the MCP protocol. Enter npx -y @vtomilin/mermaider /home/user/etc/Firefox.json (or whatever config method). Enter the server name (mermaider). And you should be all set.
Cursor/Windsuf/...
{
"mcpServers": {
"mermaider": {
"command": "npx",
"args": ["-y", "@vtomilin/mermaider", "/home/user/etc/Firefox.json"]
}
}
}
Bun
Even though this project is built with Bun the mermaider package can not be run directly with bunx at the moment. You would have to install the package globally with bun add -g @vtomilin/mermaider first. Then you can just use mermaider-bun executable to run the server:
{
"mcpServers": {
"mermaider": {
"command": "mermaider-bun",
"args": ["/home/user/etc/Firefox.json"]
}
}
}
Recommendations
- Check Puppeteer's Supported Browsers List for supported browsers.
- Use a secondary browser for
mermaiderMCP. Do not use your primary browser.
Usage Examples
Example sessions using Github Copilot in VSCode:
Generating a diagram and checking its syntax with
mermaider:
Generating an intentionally broken diagram and checking its syntax with
mermaider:
References
Other Mermaid related MCP servers
- mcp-mermaid-validator: A Model Context Protocol server that validates and renders Mermaid diagrams.
- mermaid-mcp-server: A Model Context Protocol (MCP) server providing tools for validating and rendering Mermaid diagrams.
License
Install Mermaider in Claude Desktop, Claude Code & Cursor
unyly install mermaiderInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add mermaider -- npx -y @vtomilin/mermaiderFAQ
Is Mermaider MCP free?
Yes, Mermaider MCP is free — one-click install via Unyly at no cost.
Does Mermaider need an API key?
No, Mermaider runs without API keys or environment variables.
Is Mermaider hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Mermaider in Claude Desktop, Claude Code or Cursor?
Open Mermaider on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Playwright
Browser automation, scraping, screenshots
by MicrosoftPuppeteer
Browser automation and web scraping.
by modelcontextprotocolopentabs-dev/opentabs
Plugin-based MCP server + Chrome extension that gives AI agents access to web applications through the user's authenticated browser session. 100+ plugins with a
by opentabs-devrobhunter/agentdeals
1,500+ developer infrastructure deals, free tiers, and startup programs across 54 categories. Search deals, compare vendors, plan stacks, and track pricing chan
by robhunterCompare Mermaider with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All browse MCPs
