annator / mcps /grok_com_canva /tools /create-folder.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
900 Bytes
{
"name": "create-folder",
"description": "Create a new folder in Canva. You can create it at the root level or inside another folder.",
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the folder to create"
},
"parent_folder_id": {
"type": "string",
"description": "ID of the parent folder. Use 'root' to create at the top level"
},
"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": [
"name",
"parent_folder_id"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
}