create_drawing
Generate and save Excalidraw drawings by specifying a name and content, enabling efficient creation and management of visual sketches via the Excalidraw MCP Server.
Instructions
Create a new Excalidraw drawing
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
}
},
"required": [
"name",
"content"
],
"type": "object"
}