Nurama Developers

get_task_links

List every task-link record attached to a single task — i.e.

Read-only tool.

List every task-link record attached to a single task — i.e. which other tasks it is related to, blocks, is blocked by, or duplicates. Each result includes the link type and the linked task's id. Use this to discover dependency chains before triaging a task or before adding a new link.

Input

PropertyTypeRequiredDescription
taskIdstringyesUUID of the task whose links to fetch.

JSON Schema

{
  "type": "object",
  "properties": {
    "taskId": {
      "type": "string",
      "description": "UUID of the task whose links to fetch."
    }
  },
  "required": [
    "taskId"
  ],
  "additionalProperties": false
}

On this page