mcp-server-asana

asana_add_task_dependents

Set dependents for a task (tasks that depend on this task)

Input Schema

NameRequiredDescriptionDefault
dependentsYesArray of task IDs that depend on this task
task_idYesThe task ID to add dependents to

Input Schema (JSON Schema)

{ "properties": { "dependents": { "description": "Array of task IDs that depend on this task", "items": { "type": "string" }, "type": "array" }, "task_id": { "description": "The task ID to add dependents to", "type": "string" } }, "required": [ "task_id", "dependents" ], "type": "object" }