Skip to main content
Glama

Create Task

create_task

Add a single task to an existing card by supplying card ID and task name, with an optional position for ordering.

Instructions

Create a single task on a card.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
cardIdYes
positionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/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 of behavioral disclosure. It only states that a task is created and does not disclose side effects, required card existence, permissions, or response behavior beyond what the schema already implies.

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

Conciseness4/5

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

The description is a single concise sentence with no filler, and the key scoping term 'single' is front-loaded. It is efficient, though somewhat under-specified in content.

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?

For a mutation tool with no annotations, zero schema description coverage, and multiple closely related sibling tools, this one-sentence description is insufficient. It does not explain parameter semantics, when to choose it over batch_create_tasks or create_card_with_tasks, or what happens on creation.

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 does not explain cardId, name, or position, and only weakly implies that a task is created and belongs to a card.

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 states a specific verb ('Create'), a resource ('a single task'), and the host object ('on a card'). The word 'single' differentiates it from sibling batch_create_tasks and create_card_with_tasks, so an agent can tell them apart without opening schemas.

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

Usage Guidelines3/5

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

The term 'single task' implies this tool is for one task at a time, which distinguishes it from batch_create_tasks, but no explicit alternatives or when-to-use guidance is provided. There is no exclusion such as 'use batch_create_tasks for multiple tasks.'

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