mcp-server-asana

asana_create_subtask

Create a new subtask for an existing task

Input Schema

NameRequiredDescriptionDefault
assigneeNoAssignee (can be 'me' or a user ID)
due_onNoDue date in YYYY-MM-DD format
nameYesName of the subtask
notesNoDescription of the subtask
opt_fieldsNoComma-separated list of optional fields to include
parent_task_idYesThe parent task ID to create the subtask under

Input Schema (JSON Schema)

{ "properties": { "assignee": { "description": "Assignee (can be 'me' or a user ID)", "type": "string" }, "due_on": { "description": "Due date in YYYY-MM-DD format", "type": "string" }, "name": { "description": "Name of the subtask", "type": "string" }, "notes": { "description": "Description of the subtask", "type": "string" }, "opt_fields": { "description": "Comma-separated list of optional fields to include", "type": "string" }, "parent_task_id": { "description": "The parent task ID to create the subtask under", "type": "string" } }, "required": [ "parent_task_id", "name" ], "type": "object" }