Skip to main content
Glama

get_tasks

Retrieve tasks from a ClickUp List with filters for status, assignees, tags, date ranges, custom fields, and ordering. Supports pagination and subtasks.

Instructions

Get tasks in a specific List with rich filtering — by status, assignees, tags, and due/created/updated date ranges — plus ordering, subtasks and custom-field filters. Paginated. Use when you know which List the tasks live in.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
list_idYesID of the List to read tasks from.
archivedNoIf true, include archived tasks. Defaults to false.
include_closedNoIf true, also include closed/done tasks.
pageNo0-based page number for pagination. Defaults to 0.
order_byNoField to sort by.
reverseNoIf true, reverse the sort order (descending).
subtasksNoIf true, include subtasks in the results.
statusesNoOnly return tasks whose status name is in this list.
assigneesNoOnly return tasks assigned to any of these user ids.
tagsNoOnly return tasks that have all of these tag names.
due_date_gtNoOnly tasks due AFTER this date (natural language, ISO, or epoch ms).
due_date_ltNoOnly tasks due BEFORE this date.
date_created_gtNoOnly tasks created AFTER this date.
date_created_ltNoOnly tasks created BEFORE this date.
date_updated_gtNoOnly tasks updated AFTER this date.
date_updated_ltNoOnly tasks updated BEFORE this date.
custom_fieldsNoArray of custom-field filter conditions.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed20 schema fields changedv1.0.1
    • addedInput schema / properties / archived / description
      Added value: +"If true, include archived tasks. Defaults to false."
    • addedInput schema / properties / assignees / description
      Added value: +"Only return tasks assigned to any of these user ids."
    • changedInput schema / properties / custom_fields / description
      Previous value: -"Array of custom-field filters."New value: +"Array of custom-field filter conditions."
    • addedInput schema / properties / custom_fields / items / properties / field_id / description
      Added value: +"Custom field id to filter on."
    • addedInput schema / properties / custom_fields / items / properties / operator / description
      Added value: +"Comparison operator, e.g. '=', '<', '>', 'IS NOT NULL'."
    • addedInput schema / properties / custom_fields / items / properties / value / description
      Added value: +"Value to compare against."
    • changedInput schema / properties / date_created_gt / description
      Previous value: -"Date as ISO string, epoch ms, or relative (\"tomorrow\", \"in 3 days\", \"+2h\")."New value: +"Only tasks created AFTER this date."
    • changedInput schema / properties / date_created_lt / description
      Previous value: -"Date as ISO string, epoch ms, or relative (\"tomorrow\", \"in 3 days\", \"+2h\")."New value: +"Only tasks created BEFORE this date."
    • changedInput schema / properties / date_updated_gt / description
      Previous value: -"Date as ISO string, epoch ms, or relative (\"tomorrow\", \"in 3 days\", \"+2h\")."New value: +"Only tasks updated AFTER this date."
    • changedInput schema / properties / date_updated_lt / description
      Previous value: -"Date as ISO string, epoch ms, or relative (\"tomorrow\", \"in 3 days\", \"+2h\")."New value: +"Only tasks updated BEFORE this date."
    • changedInput schema / properties / due_date_gt / description
      Previous value: -"Date as ISO string, epoch ms, or relative (\"tomorrow\", \"in 3 days\", \"+2h\")."New value: +"Only tasks due AFTER this date (natural language, ISO, or epoch ms)."
    • changedInput schema / properties / due_date_lt / description
      Previous value: -"Date as ISO string, epoch ms, or relative (\"tomorrow\", \"in 3 days\", \"+2h\")."New value: +"Only tasks due BEFORE this date."
    • addedInput schema / properties / include_closed / description
      Added value: +"If true, also include closed/done tasks."
    • changedInput schema / properties / list_id / description
      Previous value: -"List ID."New value: +"ID of the List to read tasks from."
    • addedInput schema / properties / order_by / description
      Added value: +"Field to sort by."
    • changedInput schema / properties / page / description
      Previous value: -"0-based page."New value: +"0-based page number for pagination. Defaults to 0."
    • addedInput schema / properties / reverse / description
      Added value: +"If true, reverse the sort order (descending)."
    • addedInput schema / properties / statuses / description
      Added value: +"Only return tasks whose status name is in this list."
    • addedInput schema / properties / subtasks / description
      Added value: +"If true, include subtasks in the results."
    • addedInput schema / properties / tags / description
      Added value: +"Only return tasks that have all of these tag names."
  2. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses that the tool returns paginated results and supports filtering, ordering, subtasks, and custom fields. However, it does not mention error behavior (e.g., invalid list_id) or any side effects. For a read tool, the core behavior is adequately covered, but additional detail would improve transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence plus a concise usage guideline. It is front-loaded with the main action and each clause adds necessary information. No extraneous words or redundant details. Ideal length for a tool with many parameters.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite the complexity (17 parameters, no output schema, no annotations), the description does not mention the return format (e.g., list of task objects) or the response structure. It also lacks guidance on how to handle pagination correctly or what to expect from the date filters. For a tool of this complexity, the description should be more complete to compensate for the missing output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with descriptions on all 17 parameters, so the schema already documents each parameter. The description adds value by summarizing the filtering capabilities (status, assignees, tags, date ranges, ordering, subtasks, custom fields) and noting pagination. This provides a quick overview, but does not add meaning beyond what the schema provides, earning a baseline 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves tasks in a specific List with rich filtering options. It enumerates filter types (status, assignees, tags, date ranges) and mentions ordering, subtasks, and custom-field filters. This distinguishes it from siblings like get_task (single task) and get_subtasks (subtasks only).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description ends with 'Use when you know which List the tasks live in,' providing explicit context for when to use this tool. It implies not to use it when the list is unknown, though it does not mention sibling tools like get_sprint_tasks or get_view_tasks as alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools