mcp-server-asana

asana_create_task_story

Create a comment or story on a task

Input Schema

NameRequiredDescriptionDefault
opt_fieldsNoComma-separated list of optional fields to include
task_idYesThe task ID to add the story to
textYesThe text content of the story/comment

Input Schema (JSON Schema)

{ "properties": { "opt_fields": { "description": "Comma-separated list of optional fields to include", "type": "string" }, "task_id": { "description": "The task ID to add the story to", "type": "string" }, "text": { "description": "The text content of the story/comment", "type": "string" } }, "required": [ "task_id", "text" ], "type": "object" }