Excalidraw MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_drawingC | Create a new Excalidraw drawing |
| get_drawingC | Get an Excalidraw drawing by ID |
| update_drawingC | Update an Excalidraw drawing by ID |
| delete_drawingB | Delete an Excalidraw drawing by ID |
| list_drawingsC | List all Excalidraw drawings |
| export_to_svgC | Export an Excalidraw drawing to SVG |
| export_to_pngC | Export an Excalidraw drawing to PNG |
| export_to_jsonC | Export an Excalidraw drawing to JSON |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Every tool has a clearly distinct purpose with no ambiguity. Each tool targets a specific action (create, delete, export, get, list, update) on a specific resource (drawing), making it easy for an agent to select the correct tool without confusion.
All tools follow a consistent verb_noun pattern (e.g., create_drawing, delete_drawing, export_to_json). The naming is uniform across all eight tools, with no deviations in style or convention.
With 8 tools, this server is well-scoped for managing Excalidraw drawings. Each tool serves a distinct and necessary function, covering core operations without being overly sparse or bloated.
The tool set provides complete CRUD/lifecycle coverage for the domain: create, get, list, update, and delete drawings, plus multiple export options. There are no obvious gaps, and agents can perform all essential workflows without dead ends.