Skip to main content
Glama

Create Task

create_task

Create a task from just a title, then enrich it with assignees, priority, feature/insight links, and sprint scheduling as needed.

Instructions

Create a task and return the created task. list_id defaults to the org's first list when omitted; feature_id / insight_id link it to the spine and sprint_id schedules it into a sprint. Resolve list/status/feature/insight/member ids via pm_meta and sprint_id via list_sprints — never guess them. Only title is required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesTask title (the only required field).
list_idNoList to create the task on; resolve the id via pm_meta (optional; the org's first list when omitted).
priorityNoPriority level, urgent highest (optional).
sprint_idNoSchedule into a sprint (optional; resolve the id via list_sprints).
status_idNoInitial status; resolve the id via pm_meta (optional).
feature_idNoFeature id to link on the spine, from pm_meta or list_features (optional).
insight_idNoInsight id to link on the spine, from list_insights (optional).
descriptionNoTask body / details (optional).
assignee_member_idsNoMember ids to assign, from pm_meta (optional).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.1.14
  2. Removedv0.1.13
  3. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already indicate readOnlyHint=false (so it's a write operation). The description adds meaningful context beyond that: it states the return value, the default behavior for list_id, and the linking/scheduling effects of feature_id/insight_id/sprint_id. This gives the agent a good behavioral model. No contradiction with annotations.

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 exactly three sentences, each with a distinct and essential contribution: function/return, defaults/linking, and ID-resolution guidance. No filler, no repetition of schema content. Front-loaded with the primary purpose.

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

Completeness4/5

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

Despite having 9 parameters and no output schema, the description covers the core action, return value, defaults, linkage behavior, and ID resolution, making it sufficient for correct invocation. It doesn't describe error cases or detailed response shape, but the absence of output schema makes 'return the created task' adequate for an agent to expect the full object.

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

Parameters4/5

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

Schema coverage is 100%, so baseline is 3. The description adds value by consolidating and emphasizing key semantic nuances: the default for list_id, the linkage semantics for feature_id/insight_id, the scheduling meaning of sprint_id, and the explicit rule to resolve via specific tools. This goes beyond the per-field schema descriptions.

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 opens with a clear, specific verb and resource: 'Create a task and return the created task.' It unambiguously distinguishes itself from sibling tools like update_task and delete_task by stating the creation side effect and the returned result. No ambiguity.

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 gives explicit context for when to use this tool: when creating a task, and it provides essential prerequisites such as resolving IDs via pm_meta and list_sprints, and emphasizing 'never guess them.' It doesn't explicitly mention alternatives or when not to use it, but the context is clear enough for selection among the similar siblings.

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