Skip to main content
Glama

asana_create_task

Creates an Asana task within a specified project to manage e-commerce operations, such as fulfillment, by setting the task name, notes, due date, and assignee.

Instructions

Create an Asana task in a project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
dueOnNo
notesNo
projectIdYes
assigneeIdNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It states that a task is created, implying mutation, but gives no information about side effects, required permissions, duplicate behavior, or response format. This is a significant gap for a write operation.

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 efficient sentence with no filler or repetition. It is front-loaded and immediately readable.

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?

With no annotations, no output schema, 0% schema description coverage, and five parameters, this one-sentence description is not complete enough for an agent to confidently call the tool. It omits parameter meaning, return value expectations, and guidance on selecting this tool over related Asana tools.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for the schema's lack of parameter explanations. It only adds context for projectId via 'in a project' and leaves name, dueOn, notes, and assigneeId semantically underspecified. The property names are somewhat self-explanatory, but the description does not meaningfully explain them.

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?

The description states a clear verb and resource: 'Create an Asana task in a project.' It is specific enough to distinguish creation from sibling read/update tools like asana_get_tasks and asana_update_task_status, though it does not explicitly name those alternatives.

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?

No usage guidance is provided. The description does not say when to prefer this tool over asana_update_task_status or asana_get_tasks, nor does it mention any prerequisites or exclusions. The intended context must be inferred entirely from the tool name and description.

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