Skip to main content
Glama

assign_task

Create a new task and assign it to one or more team members, setting priority, tags, and related branches to track work in your team task system.

Instructions

Create a new task and assign it to one or more team members

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoTags like feature, bug, frontend, backend
titleYesTask title
sourceNoPath to related design doc or plan
branchesNoRelated branch names
priorityNoTask priority
assigneesYesTeam member handles to assign to
descriptionNoTask description

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/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 behavioral burden and does not meet it: it never says whether assignees are notified, whether the operation requires specific permissions, or what happens on partial failure. For a mutation tool with zero annotation coverage, this is a significant gap.

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?

A single front-loaded sentence with zero filler; the create-then-assign order mirrors how the agent should think about the call. Nothing is wasted.

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 7-parameter mutating tool with no annotations and no output schema, the description is too thin: it omits notification behavior, returned identifiers, and permission requirements. The rich optional fields (source, branches, tags) are also entirely unexplained in the description.

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%, so all 7 parameters (tags, source, branches, priority enum, etc.) are already documented in the schema. The phrase 'one or more team members' adds a small clarification that assignees is a multi-value list, but nothing beyond the schema's own 'handles to assign' description.

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 specific verb and resource: it creates a task AND assigns it to one or more team members, clarifying the combined action beyond the bare name assign_task. It is clear on its own, but gives no differentiation from siblings like update_task or create_subtasks, so an agent can't tell why this one is chosen over them.

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 when-to-use guidance, no prerequisites, and no mention of any alternative such as update_task or reassign_task. The agent must infer the appropriate context entirely on its own.

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