Skip to main content
Glama

create_task

Add a new task to a task board by providing a title and category; optionally set status, priority, tags, dependencies, and description.

Instructions

Create a new task in the task board.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoTags for filtering
titleYesTask title
statusNoCurrent statusbacklog
categoryYesTask category
priorityNoPriority (1 highest, 5 lowest)
depends_onNoIDs of tasks this depends on
descriptionNoDetailed description
estimate_daysNoRough estimate in days

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are supplied, so the description carries the full behavioral burden, and it says almost nothing: it does not state that required fields must be supplied, that status defaults to backlog, whether duplicate titles are permitted, or what identifier is returned for use in depends_on. For a mutation tool with zero annotation coverage this is a substantial gap.

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?

A single short sentence with the core action front-loaded and no filler. It is efficiently sized, though the brevity reflects under-specification rather than deliberate compression.

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?

The tool takes 8 parameters with enums and defaults, has no output schema and no annotations, yet the description covers none of this. An agent cannot tell from the definition what a successful call returns or how the new task relates to list_tasks and get_task, leaving the definition insufficient for the tool's complexity.

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?

Schema description coverage is 100% across all 8 parameters, including enum values and defaults, so the schema already does the heavy lifting. The description adds no parameter semantics of its own, which is the expected baseline 3 when structured data is complete.

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 pairs a specific verb ("Create") with a specific resource ("task in the task board"), so an agent immediately knows the operation. It does not, however, distinguish itself from other creation-capable siblings such as seed_tasks_from_projects, parse_natural_language_task, or analyze_session_for_tasks, which also produce tasks.

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 call this versus the sibling creation tools or update_task. No prerequisites, no exclusions, and no scenario framing are provided; the agent must infer everything from the name.

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