Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Converts Mermaid diagrams into Excalidraw diagrams, serves them locally, and opens the result in your browser.

README.md

Excalimaid

![npm version](https://www.npmjs.com/package/excalimaid)

Converts Mermaid diagrams into Excalidraw diagrams, serves them locally, and opens the result in your browser. Includes an MCP server for AI assistants. All processing is done locally, no data is sent to external servers.

Installation

npm install -g excalimaid

Usage

CLI

Open a Mermaid diagram in Excalidraw:

excalimaid 'graph TD
A-->B'

Or pipe via stdin:

cat diagram.mmd | excalimaid

Tip

Add to your ~/.zshrc or ~/.bashrc to open whatever Mermaid diagram is in your clipboard:

alias mmd='pbpaste | excalimaid'

Then just copy a Mermaid diagram and run mmd.

MCP Server

Excalimaid provides an MCP server for AI assistants:

excalimaid mcp

Tool: open-diagram

Opens a Mermaid diagram in Excalidraw. Supports Flowchart, Sequence, and Class diagrams.

{
  "name": "open-diagram",
  "arguments": {
    "mermaid": "graph TD\nA-->B"
  }
}

Starts a local HTTP server on the default port 17532 (configurable via EXCALIMAID_PORT), opens your browser, and returns the URL.

The server auto-shuts down after 5 minutes of inactivity.

MCP Setup

Configure excalimaid in your MCP client:

OpenCode (opencode.json): ``json { "$schema": "https://opencode.ai/config.json", "mcp": { "excalimaid": { "type": "local", "command": ["npx", "-y", "excalimaid@latest", "mcp"], "enabled": true } } } ``

Claude or Cursor ``json { "mcpServers": { "excalimaid": { "command": "npx", "args": ["-y", "excalimaid@latest", "mcp"] } } } ``

Once configured, the open-diagram tool will be available to your AI assistant.

Configuration

| Variable | Description | Default | |---|---|---| | EXCALIMAID_PORT | Port for the local HTTP server | 17532 | | EXCALIMAID_IDLE_TIMEOUT | Idle timeout in minutes before the server shuts down | 5 |

Example:

EXCALIMAID_PORT=8080 excalimaid 'graph TD
A-->B'

How it works

!How it works Made with the tool itself, obviously

  1. The script base64-encodes the Mermaid syntax and passes it as a ?mermaid= query parameter
  2. It serves the dist/ directory via a minimal HTTP server on the default port 17532
  3. The React app decodes the parameter and converts it to Excalidraw elements using @excalidraw/mermaid-to-excalidraw
  4. The result is rendered in a full-screen Excalidraw canvas

Development

Clone and setup for local development:

git clone https://github.com/mklinovsky/excalimaid.git
cd excalimaid
pnpm install
pnpm run build

Link globally to use the local version:

pnpm link --global

Now you can run excalimaid from anywhere using your local build.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.