Excalidraw MCP Server
An MCP (Model Context Protocol) server that empowers AI agents (like Claude, Cursor, Windsurf) to create, edit, and manage Excalidraw diagrams directly within your conversation.
Why Excalidraw? Its hand-drawn aesthetic and JSON-based format are perfect for rapid, programmable diagramming. This server bridges standard MCP clients with a local Excalidraw instance, enabling AI-powered visual thinking.
⨠Features
| Feature | Description |
|---|---|
| šØ Real-time Preview | Changes appear instantly in a local browser window via WebSocket |
| š Smart Layout | Automatically calculates text width and binds labels to containers |
| š Multi-Session | Switch between different diagrams seamlessly |
| š§ Mermaid Support | Convert Mermaid syntax to Excalidraw diagrams instantly |
| š¦ Export Options | Export to PNG, SVG, or JSON formats |
| šļø Templates | Built-in architecture diagram templates |
š Quick Start
You don't need to clone this repo. Just configure your MCP client:
Claude Code (cc)
bashclaude mcp add excalidraw -- npx -y @scofieldfree/excalidraw-mcp
Codex CLI
bashcodex mcp add excalidraw -- npx -y @scofieldfree/excalidraw-mcp
Cursor / Windsurf
Go to Settings > MCP ā Add New MCP Server:
| Field | Value |
|---|---|
| Name | excalidraw |
| Type | command |
| Command | npx -y @scofieldfree/excalidraw-mcp |
Cline (VS Code Extension)
Open Cline settings and add to MCP Servers:
json{ "mcpServers": { "excalidraw": { "command": "npx", "args": ["-y", "@scofieldfree/excalidraw-mcp"] } } }
GitHub Copilot
Use the Copilot CLI to interactively add:
bash/mcp add
Alternatively, create or edit ~/.copilot/mcp-config.json:
json{ "mcpServers": { "excalidraw": { "type": "local", "command": "npx", "tools": ["*"], "args": ["-y", "@scofieldfree/excalidraw-mcp"] } } }
Kiro
Follow the MCP Servers documentation. Add to .kiro/settings/mcp.json:
json{ "mcpServers": { "excalidraw": { "command": "npx", "args": ["-y", "@scofieldfree/excalidraw-mcp"] } } }
opencode
bashopencode mcp add excalidraw -- npx -y @scofieldfree/excalidraw-mcp
VS Code
One-click install:
Or install via CLI:
bash# For VS Code code --add-mcp '{"name":"excalidraw","command":"npx","args":["-y","@scofieldfree/excalidraw-mcp"]}' # For VS Code Insiders code-insiders --add-mcp '{"name":"excalidraw","command":"npx","args":["-y","@scofieldfree/excalidraw-mcp"]}'
Claude Desktop
Add to your claude_desktop_config.json:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
json{ "mcpServers": { "excalidraw": { "command": "npx", "args": ["-y", "@scofieldfree/excalidraw-mcp"] } } }
š ļø Available Tools
| Tool | Description |
|---|---|
start_session | Start browser preview and open Excalidraw editor |
add_elements | Add shapes, text, arrows to the canvas |
update_element | Modify existing element properties |
delete_element | Remove elements from canvas |
get_scene | Retrieve current diagram state |
create_from_mermaid | Convert Mermaid syntax to Excalidraw |
add_template_architecture | Add a pre-built architecture diagram template |
create_diagram | Create a new diagram or clear existing |
export_diagram | Export diagram to PNG, SVG, or JSON |
list_sessions | List all active diagram sessions |
delete_diagram | Delete a diagram session |
š¬ Usage Examples
Example 1: Create a Simple Diagram
You say:
"Draw a flowchart with three boxes: Input ā Process ā Output"
AI uses:
start_session ā add_elements (3 rectangles + 2 arrows)
Example 2: Convert Mermaid to Excalidraw
You say:
"Convert this Mermaid diagram to Excalidraw:
graph LR: A[User] --> B[API Gateway] --> C[Service] --> D[(Database)]"
AI uses:
start_session ā create_from_mermaid
Example 3: Architecture Diagram
You say:
"Create an architecture diagram for a microservices system"
AI uses:
start_session ā add_template_architecture (or) add_elements with custom layout
šļø Architecture
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā ā AI Agent (Claude/Cursor) ā āāāāāāāāāāāāāāāāāāāāāāāāāāā¬āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā ā MCP Protocol (JSON-RPC over stdio) ā¼ āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā ā Excalidraw MCP Server ā ā āāāāāāāāāāāāāāā āāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāāāāāā ā ā ā Tool Router āāāā State Store āāāā WebSocket Broadcast ā ā ā āāāāāāāāāāāāāāā āāāāāāāāāāāāāāā āāāāāāāāāāāā¬āāāāāāāāāāā ā āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā¼āāāāāāāāāāāāā ā WebSocket ā¼ āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā ā Browser (Excalidraw Editor) ā āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
š§ Development
Prerequisites
- Node.js >= 18
- pnpm >= 9
Setup
bash# Clone the repository git clone https://github.com/Scofieldfree/excalidraw-mcp.git cd excalidraw-mcp # Install dependencies pnpm install # Start development server pnpm dev
Scripts
| Command | Description |
|---|---|
pnpm dev | Start dev server (backend + frontend) |
pnpm build | Build for production |
pnpm typecheck | Run TypeScript type checking |
pnpm lint | Run ESLint |
pnpm release | Create a new release version |
š¦ Project Structure
excalidraw-mcp/ āāā packages/ ā āāā mcp-server/ # Core MCP server + Excalidraw frontend ā āāā src/ ā ā āāā index.ts # Entry point ā ā āāā state.ts # Session state management ā ā āāā http-server.ts ā ā āāā tools/ # MCP tool implementations ā āāā web/ # Excalidraw React frontend āāā docs/ # Documentation āāā package.json # Workspace configuration
š Troubleshooting
Port Already in Use
The server automatically finds an available port starting from 3100. If you need a specific port, set the PORT environment variable.
Browser Doesn't Open
Ensure you have a default browser configured. The server uses the open package to launch the browser.
WebSocket Connection Failed
Check if any firewall or antivirus is blocking WebSocket connections on localhost.
š¤ Contributing
Contributions are welcome! Please read our Contributing Guide for details.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'feat: add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
š License
MIT Ā© Scofieldfree



