An MCP (Model Context Protocol) server for exporting Excalidraw diagrams to PNG or SVG format.
- Export
.excalidrawfiles to PNG or SVG - Batch export multiple files at once
- Get diagram metadata (element count, types, bounds, etc.)
- Pixel-perfect rendering using headless Chromium browser
- Configurable export options (scale, dark mode, background)
- Node.js 18 or later
- Playwright (Chromium is downloaded automatically on install)
npm install
npm run buildOn first install, Playwright will download Chromium automatically.
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"excalidraw-export": {
"command": "node",
"args": ["/path/to/excalidraw-export-mcp/dist/index.js"]
}
}
}Export a single Excalidraw diagram.
Parameters:
inputPath(required): Absolute path to the.excalidrawfileoutputPath: Output file path (defaults to input path with new extension)format:"png"or"svg"(default:"png")background: Include background color (default:true)darkMode: Export in dark mode (default:false)scale: Scale factor 1, 2, or 3 (default:2for high DPI)
Export multiple diagrams at once.
Parameters:
inputPaths(required): Array of absolute paths to.excalidrawfilesoutputDir: Output directory (defaults to same directory as each input)format:"png"or"svg"(default:"png")background,darkMode,scale: Same as above
Get metadata about an Excalidraw file without exporting.
Parameters:
inputPath(required): Absolute path to the.excalidrawfile
Returns:
elementCount: Number of elements in the diagramelementTypes: Count of each element type (rectangle, arrow, text, etc.)hasBackground: Whether background is exportedbackgroundColor: Background colorversion: Excalidraw schema versionfileSize: File size in bytesbounds: Diagram dimensions (width, height)
{
"tool": "export_excalidraw",
"arguments": {
"inputPath": "/Users/me/diagrams/architecture.excalidraw",
"format": "png",
"scale": 2
}
}Result:
{
"success": true,
"outputPath": "/Users/me/diagrams/architecture.png",
"format": "png",
"message": "Successfully exported to /Users/me/diagrams/architecture.png"
}{
"tool": "export_excalidraw",
"arguments": {
"inputPath": "/Users/me/docs/flowchart.excalidraw",
"outputPath": "/Users/me/images/flowchart-hires.png",
"scale": 3
}
}{
"tool": "export_excalidraw",
"arguments": {
"inputPath": "/Users/me/diagrams/network.excalidraw",
"darkMode": true,
"background": true
}
}{
"tool": "export_excalidraw",
"arguments": {
"inputPath": "/Users/me/diagrams/logo.excalidraw",
"format": "svg"
}
}{
"tool": "export_excalidraw_batch",
"arguments": {
"inputPaths": [
"/Users/me/docs/diagram1.excalidraw",
"/Users/me/docs/diagram2.excalidraw",
"/Users/me/docs/diagram3.excalidraw"
],
"outputDir": "/Users/me/exports",
"format": "png",
"scale": 2
}
}Result:
{
"success": true,
"results": [
{
"inputPath": "/Users/me/docs/diagram1.excalidraw",
"outputPath": "/Users/me/exports/diagram1.png",
"success": true
},
{
"inputPath": "/Users/me/docs/diagram2.excalidraw",
"outputPath": "/Users/me/exports/diagram2.png",
"success": true
},
{
"inputPath": "/Users/me/docs/diagram3.excalidraw",
"outputPath": "/Users/me/exports/diagram3.png",
"success": true
}
],
"totalProcessed": 3,
"successful": 3,
"failed": 0
}{
"tool": "get_excalidraw_info",
"arguments": {
"inputPath": "/Users/me/diagrams/architecture.excalidraw"
}
}Result:
{
"elementCount": 15,
"elementTypes": {
"rectangle": 5,
"arrow": 6,
"text": 4
},
"hasBackground": true,
"backgroundColor": "#ffffff",
"version": 2,
"source": "https://excalidraw.com",
"fileSize": 12453,
"bounds": {
"width": 800,
"height": 600
}
}{
"tool": "export_excalidraw",
"arguments": {
"inputPath": "/Users/me/diagrams/icon.excalidraw",
"format": "png",
"background": false
}
}When using with Claude Code, you can ask:
Export a diagram:
"Export the architecture diagram at /path/to/architecture.excalidraw to PNG"
Export all diagrams in a folder:
"Export all .excalidraw files in the docs folder to PNG format"
Get diagram info before exporting:
"What's in the diagram at /path/to/diagram.excalidraw? How many elements does it have?"
Create high-resolution exports:
"Export diagram.excalidraw at 3x scale for printing"
Dark mode exports:
"Export the network diagram in dark mode"
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run dev
# Run all tests
npm test
# Run unit tests only (faster, no browser)
npm run test:unit
# Run integration tests (requires Playwright/Chromium)
npm run test:integrationThe project includes a comprehensive test suite:
- Element counting and categorization
- Bounds calculation
- AppState property extraction
- Edge cases (empty elements, missing properties)
- Zod schema validation for all tool inputs
- Default value handling
- Required field validation
- Boundary conditions (scale min/max)
- Tool definition structure validation
- Full export pipeline with Playwright
- PNG file validation (magic bytes check)
- Page reload handling
- Canvas capture
- Batch processing
- Error recovery
To skip integration tests (if Chromium is not installed):
SKIP_INTEGRATION=true npm testThis server uses Playwright to run a headless Chromium browser that:
- Navigates to excalidraw.com
- Loads your diagram data via localStorage
- Captures a screenshot of the rendered canvas
This approach ensures pixel-perfect rendering identical to the Excalidraw web app.
If you see "Executable doesn't exist" errors, run:
npx playwright install chromiumFor large diagrams, the export may take longer. The server includes automatic retries and page reload handling.
For very large batches, consider breaking them into smaller chunks or increasing Node.js memory:
NODE_OPTIONS="--max-old-space-size=4096" node dist/index.js- Create an npm account at https://www.npmjs.com/
- Generate an access token with publish permissions
- Add the token as
NPM_TOKENsecret in GitHub repository settings
Publishing is automated via GitHub Actions. To publish a new version:
-
Update the version in
package.json:npm version patch # or minor, major -
Push the changes and create a GitHub release:
git push && git push --tags -
Create a release on GitHub from the tag - this triggers the publish workflow
To publish manually:
# Login to npm
npm login
# Build and test
npm run build
npm run test:unit
# Publish
npm publish --access public- Patch (0.1.x): Bug fixes, documentation updates
- Minor (0.x.0): New features, non-breaking changes
- Major (x.0.0): Breaking changes
Once published, users can install directly:
npm install -g excalidraw-export-mcpOr use with npx:
npx excalidraw-export-mcpMIT