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 targeting specific actions on drawings: creation, deletion, retrieval, listing, updating, and three distinct export formats. There is no overlap or ambiguity between tools, making it easy for an agent to select the correct one.
All tools follow a consistent verb_noun pattern (e.g., create_drawing, delete_drawing) with no deviations. The naming is predictable and readable throughout the set, enhancing usability and coherence.
With 8 tools, the server is well-scoped for managing Excalidraw drawings, covering core CRUD operations and multiple export options. Each tool earns its place without feeling excessive or insufficient for the domain.
The tool set provides complete CRUD/lifecycle coverage for drawings (create, get, list, update, delete) and includes essential export functionalities (JSON, PNG, SVG). There are no obvious gaps, ensuring agents can handle all typical workflows without dead ends.