create_drawing
Create a new Excalidraw drawing by providing a name and content. Generate diagrams and visual representations for documentation, planning, or communication purposes.
Instructions
Create a new Excalidraw drawing
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| content | Yes | ||
| name | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "content": {
      "minLength": 1,
      "type": "string"
    },
    "name": {
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "name",
    "content"
  ],
  "type": "object"
}