Skip to main content
Glama

asana_delete_task

Permanently delete a task from Asana by task ID. This action cannot be undone.

Instructions

Delete a task. This permanently removes the task and cannot be undone.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYesThe task ID to delete

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden, and it does deliver the single most important trait: permanent, irreversible deletion. It remains silent on other consequential behaviors an agent would want before calling it — whether subtasks, stories, or tag associations are cascade-deleted, what permissions are required, and what the response contains.

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?

Two short sentences with zero filler; the core action is front-loaded and the destructive warning follows immediately. Nothing could be removed without losing information.

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

Completeness3/5

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

For a destructive, irreversible operation with no annotations and no output schema, the definition covers the essential warning but omits cascade effects, permission prerequisites, and error behavior. An agent can call it correctly, but cannot fully predict the consequences of doing so.

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?

Only one parameter exists and the schema documents it fully ('The task ID to delete'), so the schema already carries the semantics. The description adds nothing about the ID's format or accepted sources (GID vs. name), making this a baseline case where the schema does the heavy lifting.

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

Purpose4/5

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

States a specific verb and resource ('Delete a task'), which cleanly distinguishes it from the many read/create/update siblings sharing the asana_ prefix. It does not, however, explicitly differentiate itself from other delete siblings such as asana_delete_tag or asana_delete_project_status beyond the resource noun.

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

Usage Guidelines2/5

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

There is no guidance on when to use this versus alternatives (e.g. removing a task from a project with asana_remove_project_from_task instead of deleting it outright) and no stated prerequisites or permission requirements. The irreversibility note hints at caution but is not framed as usage guidance.

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