mcp-server-asana

asana_add_task_dependencies

Set dependencies for a task

Input Schema

NameRequiredDescriptionDefault
dependenciesYesArray of task IDs that this task depends on
task_idYesThe task ID to add dependencies to

Input Schema (JSON Schema)

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