| { |
| "name": "comment-on-design", |
| "description": "Add a comment on a Canva design. You need to provide the design ID and the message text. The comment will be added to the design and visible to all users with access to the design.", |
| "inputSchema": { |
| "type": "object", |
| "properties": { |
| "design_id": { |
| "type": "string", |
| "minLength": 11, |
| "maxLength": 11, |
| "pattern": "^D[a-zA-Z0-9_-]+$", |
| "description": "ID of the design to comment on. You can find the design ID by using the `search-designs` tool." |
| }, |
| "message_plaintext": { |
| "type": "string", |
| "minLength": 1, |
| "maxLength": 1000, |
| "description": "The text content of the comment to add" |
| }, |
| "user_intent": { |
| "type": "string", |
| "description": "Mandatory description of what the user is trying to accomplish with this tool call. This should always be provided by LLM clients. Please keep it concise (255 characters or less recommended)." |
| } |
| }, |
| "required": [ |
| "design_id", |
| "message_plaintext" |
| ], |
| "additionalProperties": false, |
| "$schema": "http://json-schema.org/draft-07/schema#" |
| } |
| } |