annator / mcps /grok_com_canva /tools /list-replies.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
2.5 kB
{
"name": "list-replies",
"description": "Get a list of replies for a specific comment on a Canva design.\n\n Comments can contain multiple replies from different users. These replies help teams\n collaborate by allowing discussion on a specific comment.\n\n You need to provide the design ID and comment ID. You can find the design ID using the `search-designs` tool\n and the comment ID using the `list-comments` tool.\n\n Use the continuation token to get the next page of results, when there are more results.",
"inputSchema": {
"type": "object",
"properties": {
"design_id": {
"type": "string",
"minLength": 11,
"maxLength": 11,
"pattern": "^D[a-zA-Z0-9_-]+$",
"description": "ID of the design containing the comment. You can find the design ID using the `search-designs` tool."
},
"comment_id": {
"type": "string",
"description": "ID of the comment to list replies from. You can find comment IDs using the `list-comments` tool."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 50,
"description": "Maximum number of replies to return (1-100). Defaults to 50 if not specified."
},
"continuation": {
"type": "string",
"description": "\n Pagination token for the current search context.\n\n CRITICAL RULES:\n - ONLY set this parameter if the previous response included a continuation token.\n - If no continuation token was returned → OMIT this parameter completely. NEVER EVER fabricate a token.\n - Do not set to null, empty string, or any other value when no token was provided.\n\n Usage:\n - First request: omit this parameter\n - Previous response had continuation token: use that exact token\n - Previous response had NO continuation token: omit this parameter\n - New search query: omit this parameter\n "
},
"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",
"comment_id"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
}