Skip to main content
Glama

create_task

Register a task to organize work, then scope logged sessions to it using the returned ID for filterable review.

Instructions

Register a task with the team, so logged sessions can be scoped to it (pass the returned id as log_session's task_id) - useful when several sessions across one piece of work should be filterable together later. name is how it shows up in the review UI; description is optional context.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
descriptionNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral disclosure burden. It does reveal that the tool returns an id (implied by 'pass the returned id') and that name appears in the review UI, but it does not explicitly state that a persistent record is created, nor mention permission requirements, idempotency, or failure behavior.

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 three sentences with no filler. It front-loads the core purpose and integration with log_session, then efficiently covers parameter semantics. Each sentence contributes distinct value.

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?

For a two-parameter create tool with no output schema and no annotations, the description is nearly complete: it explains the return id, the intended workflow, and parameter meanings. It omits error conditions and duplicate behavior, but those are minor for such a simple tool.

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?

With 0% schema description coverage, the description compensates well by clarifying that name is the label shown in the review UI and description is optional context. It adds meaning beyond the bare schema, though it does not specify format or length constraints.

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 specific verb and resource ('Register a task with the team') and immediately explains the tool's raison d'être: scoping logged sessions to a task via the returned id. This clearly distinguishes it from sibling tools like list_tasks and log_session.

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 an explicit condition for use ('useful when several sessions across one piece of work should be filterable together later') and names the integration point with log_session by passing the returned task_id. It does not explicitly state when not to use it, but the context is strong and unambiguous.

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