@excalimate/mcp-server
Enables AI agents to programmatically create, modify, and animate hand-drawn diagrams, providing 23 tools for scene creation and element animation including opacity fades, position slides, scale effects, and rotation.
Turn hand-drawn Excalidraw diagrams into keyframe animations
App · Landing Page · Feedback · MCP Server Docs · Report Bug
Draw diagrams with the full Excalidraw editor, then animate elements with opacity fades, position slides, scale effects, rotation, and arrow draw-on animations. Export as MP4, WebM, GIF, or animated SVG. Includes an MCP server so AI agents can create and animate diagrams in real-time.
Demo
https://github.com/user-attachments/assets/77e87c62-0ff4-4a56-aee6-50553b94798c
A considerable part of this codebase was built with AI. The process of cleaning up the code and fixing bugs is still ongoing — use it cautiously. If you encounter any issues, pleasereport them.
Related MCP server: excalidraw-mcp
Features
Full Excalidraw editor — draw, edit, resize, connect arrows, add text
Progressive V2 creator — Magic Canvas, plain-language Sequence, and Advanced Studio
Local animation tools — deterministic Auto Animate, presets, templates, and Smart Transitions
Keyframe animation — opacity, position, scale, rotation, draw progress
Advanced timeline — collapsible per-element tracks with interpolation lines, clip markers, scrubbing
Camera animation — pan/zoom keyframes with aspect ratio control
Unified export — MP4, WebM, GIF, animated SVG, Lottie, and dotLottie
Hosted player and embeds — compact playback runtime with responsive controls
E2E encrypted sharing — expiry and revocation with the AES-256-GCM key kept in the URL hash
MCP server — 35 tools, including all 29 legacy tools and six structured V2 action tools
Live mode — watch AI changes appear in the editor in real-time via SSE
Quick Start
Try it now — no cloning required:
npx @excalimate/mcp-serverPoint your AI tool to http://127.0.0.1:3001/mcp. After it connects, copy the
printed preview pairing URL into File → Preferences in
app.excalimate.com, then click Live.
Local development
npm install
npm run dev
# → http://localhost:5173AI Integration (MCP Server)
The MCP server lets AI agents (Copilot, Claude, Cursor, Windsurf) create and animate diagrams for you. Start the server, connect your AI tool, and watch diagrams appear live in app.excalimate.com.
The recommended workflow is action-first: create a scene, then use auto_animate, apply_animation_preset, upsert_action_sequence, or create_camera_move before reaching for raw keyframes. These tools use the same browser-neutral V2 schema and deterministic animation core as the app stack. The MCP server does not host a model or send scene content to an AI service.
npx @excalimate/mcp-server # default port 3001
npx @excalimate/mcp-server --port 4000 # custom portAdd to .vscode/mcp.json:
{
"servers": {
"excalimate": {
"type": "http",
"url": "http://localhost:3001/mcp",
},
},
}Add to claude_desktop_config.json:
{
"mcpServers": {
"excalimate": {
"command": "npx",
"args": ["@excalimate/mcp-server", "--stdio"]
}
}
}Claude Desktop uses stdio transport — no live preview. Usesave_checkpoint, import the V2 project in app.excalimate.com, then share from the authenticated browser UI.
npx @excalimate/mcp-server &
claude mcp add excalimate http://localhost:3001/mcpPoint your MCP client to http://localhost:3001/mcp and start the server with npx @excalimate/mcp-server.
HTTP mode (default) enableslive preview — you see the AI's changes in real-time. stdio mode is only needed for tools that don't support HTTP transport.
See mcp-server/README.md for the full tool reference and configuration guide.
AI Skills (Optional)
Excalimate ships with 16 specialized skills that teach AI agents how to create specific diagram types (architecture diagrams, flowcharts, sequence diagrams, etc.) with proper animation patterns. Skills dramatically improve output quality.
GitHub Copilot (recommended):
npx skills add https://github.com/excalimate/excalimateManual installation (any agent):
Copy the skills/ directory into your project, or point your agent's skill/context configuration to the skill files. Each skill is a standalone SKILL.md file that can be loaded as context.
Available skills: excalimate-core · animated-presentations · animation-patterns · architecture-diagrams · comparison-diagrams · data-pipelines · diagram-theming · er-diagrams · explainer-animations · export-optimization · flowcharts · mind-maps · network-topologies · org-charts · sequence-diagrams · timeline-roadmaps
Usage
V2 creator workflow
Draw with the full Excalidraw editor or start from an animated template.
Use Magic to preview local Auto Animate, apply a preset, or create a Smart Transition between captured scene states.
Use Sequence to reorder actions and adjust plain-language timing such as after or with the previous action.
Open Studio for the preserved advanced timeline, custom keyframes, clip range, camera, and per-track controls.
Export a video, image, animated SVG, Lottie, or dotLottie, or create an encrypted expiring share link for hosted playback.
Sharing
Share your animation via File → Share. The project is encrypted client-side with AES-256-GCM and uploaded as an opaque blob — the server never sees the encryption key.
Architecture
excalimate/
├── src/ # React web app (Vite + TypeScript)
│ ├── components/ # UI (Mantine + Tailwind CSS)
│ ├── core/ # Animation engine, interpolation, playback
│ ├── stores/ # Zustand state management
│ ├── services/ # Export pipeline, encryption, file I/O
│ └── hooks/ # MCP live, hotkeys, auto-save
├── mcp-server/ # MCP server (Node.js + Express)
│ └── src/server/ # Modular tool registrations
├── packages/
│ ├── project-schema/ # Shared V2 project codec and validation
│ ├── animation-core/ # Shared deterministic action compiler/runtime
│ ├── player-runtime/ # Hosted player package, sanitizer, playback
│ └── export-runtime/ # Unified export sampling and workers
├── skills/ # AI skill definitions (16 skills)
└── docs/ # Design guidelines, plansThe web app is a static SPA — all rendering, animation, and editing happens in the browser. The MCP server is optional, used only for AI integration and live preview.
Excalimate V2 documentation
Tech Stack
Layer | Technology |
UI | React 19, Mantine 8, Tailwind CSS 4, Tabler Icons |
Canvas | Excalidraw 0.18 |
State | Zustand |
Animation | Custom keyframe engine with interpolation + easing |
Export | WebCodecs (MP4/WebM), gif.js, SVG |
Encryption | Web Crypto API (AES-256-GCM) |
MCP Server | Node.js, Express, MCP SDK |
Build | Vite 7, TypeScript 5.9 |
Deployment | Cloudflare Pages, Cloudflare Workers, Cloudflare R2 |
Development
npm run dev # Start dev server
npm run build # Production build
npm run test # Run tests
npm run lint # ESLintPrivacy-sensitive deployment settings
The privacy notice depends on production configuration as well as source code:
Configure the landing-page Cloudflare Workers build with root directory
landing-page, build commandnpm run build, and deploy commandnpx wrangler versions upload --config dist/server/wrangler.json. The Cloudflare adapter generates that server configuration during the build.Use only Cloudflare edge/zone aggregate traffic analytics. Do not enable the Cloudflare Web Analytics browser beacon or export request logs for analytics.
Do not describe or use Cloudflare's IP-derived unique-visitor metric as anonymous. Delete raw/exported Cloudflare reports within 30 days; aggregate trend reports may be retained without a fixed limit.
Keep PostHog on Cloud EU with IP capture, autocapture, session replay, surveys, product tours, web experiments, and feature flags disabled. Set event retention to no more than 12 months and review the DPA and subprocessors before release.
Retain the legitimate-interest and ePrivacy assessments for Cloudflare, GitHub's star-count request, and the pinned unpkg dotLottie runtime. Review the DPIA screening, Article 30 record, and any transfer assessment when a data flow changes.
Obtain legal approval for the deployed notice and account settings. If the GitHub or unpkg request cannot rely on the documented ePrivacy position in a target jurisdiction, self-host/proxy it or gate it before release.
MCP server:
npm install
npm run build --workspace @excalimate/project-schema
npm run build --workspace @excalimate/animation-core
npm run build --workspace @excalimate/mcp-server
cd mcp-server
node dist/index.js # HTTP mode
node dist/index.js --stdio # stdio mode
node dist/index.js --port 4000 # custom portAcknowledgements
This project was inspired by excalidraw-animate by Daishi Kato, which demonstrated that Excalidraw drawings could be brought to life with animations. Thank you for the inspiration!
Built with Excalidraw — the amazing open-source virtual whiteboard.
License
MIT — see LICENSE
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables users to create and interact with hand-drawn Excalidraw diagrams featuring smooth viewport camera control and interactive fullscreen editing. It uses the MCP Apps extension to render collaborative virtual whiteboards directly within supported AI chat interfaces.Last updated
- Alicense-qualityCmaintenanceEnables AI agents to create and manipulate live visual diagrams on an Excalidraw canvas in real-time via MCP tools.Last updated3,69114BSD 3-Clause
- AlicenseAqualityCmaintenanceGenerates Excalidraw architecture diagrams with support for 60+ components including GCP, Kafka, and AI/Agentic shapes. Provides MCP tools for creating, modifying, and converting diagrams from structured input or Mermaid syntax.Last updated41MIT
- Alicense-qualityDmaintenanceEnables AI agents to create, modify, and share diagrams on a live Excalidraw canvas through MCP tools, supporting shapes, text, arrows, batch operations, and export to shareable links with images.Last updated1,9858MIT
Related MCP Connectors
Real-time collaborative whiteboard — AI agents and humans edit the same board live over MCP.
AI agent draws editable hand-drawn diagrams (flowchart, ER, architecture) via MCP, not static images
Generate dynamic Mermaid diagrams and charts with AI assistance. Customize styles and export diagr…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/excalimate/excalimate'
If you have feedback or need assistance with the MCP directory API, please join our Discord server