Skip to content

get_task_list

get_task_list

Return the detail of a single task list. The authenticated user must be a member of the list. Archived lists they belong to are returned here even though list_task_lists hides them.

FieldTypeRequiredDescription
listIdnumberyesNumeric ID of the list to fetch.
{
  "listId": 27
}

A single text content block containing a JSON object describing the list.

FieldTypeDescription
idnumberNumeric ID of the list.
namestringDisplay name of the list.
colorstringColor tag of the list.
isArchivedbooleantrue if archived.
createdAtstringISO 8601 timestamp the list was created.
updatedAtstringISO 8601 timestamp of the last update.
{
  "id": 27,
  "name": "Q3 launch",
  "color": "Blue",
  "isArchived": false,
  "createdAt": "2026-04-12T09:18:33.000Z",
  "updatedAt": "2026-05-08T11:02:08.000Z"
}

The tool returns isError: true with an explanatory text block when the list ID doesn’t exist or the authenticated user is not a member of the list.