list_drawings
Retrieve and organize all Excalidraw drawings with pagination support for efficient management and accessibility. Use this tool to list drawings by specifying page and per-page parameters.
Instructions
List all Excalidraw drawings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
perPage | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"default": 1,
"minimum": 1,
"type": "integer"
},
"perPage": {
"default": 10,
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}