asana_get_tasks
List tasks in an Asana project by project ID, optionally filtering to tasks completed after a specified date.
Instructions
List tasks in an Asana project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | ||
| completedSince | No |
List tasks in an Asana project by project ID, optionally filtering to tasks completed after a specified date.
List tasks in an Asana project
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | ||
| completedSince | No |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of indicating that this is a read-only list operation, which 'List' does convey. However, it adds no details about pagination, optional filters, or return behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One short sentence, front-loaded with the action and resource, with no wasted words. The description is easy to scan and digest.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no output schema and no annotations, this is under-specified: the optional `completedSince` parameter is unexplained, and there is no indication of what the returned tasks look like. A minimally viable description should at least clarify the required project scope and the optional filter.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage and the description does not mention `projectId` or `completedSince`. 'project' hints at `projectId`, but the optional filter and its expected format are left completely unspecified.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and resource ('tasks') with a clear scope ('in an Asana project'). This cleanly separates it from the create/update Asana siblings and from the Odoo/Shopify tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The statement 'List tasks in an Asana project' provides clear context for the intended use: retrieving tasks for a project. It does not explicitly name alternatives or exclusion conditions, but the use case is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.