Skip to main content
Glama

Create task

create_task

Create a new task on a board by specifying the board slug and title. Optionally set status, priority, tags, assignees, due date, and more.

Instructions

Create a new task on a board. Requires the board slug and a title. Returns the created task with its generated id and number.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesTask title (required)
statusNoTask status. Default values: OPEN, IN_PROGRESS, IN_REVIEW, NEEDS_INFO, DONE (= "Closed - done"), CLOSED (= "Closed - won't do"). Use NEEDS_INFO when the task is blocked waiting for clarification. A board may define custom statuses — read board.config.statuses from get_board.
tag_idsNoTag IDs from list_board_tags (must belong to the same board)
due_dateNoDue date as ISO string (e.g. 2025-12-31)
priorityNoPriority, low to high: MINOR, ORDINARY ("Low"), MEDIUM, IMPORTANT ("High"), BLOCKER. A board may define custom priorities — read board.config.priorities from get_board.
stage_idNoStage ID (use get_board to see stages)
column_idNoKanban column ID (use list_board_columns to get IDs)
parent_idNoParent task UUID (for subtasks)
tag_namesNoTag names for this task. Tags live on the board: a name that isn't there yet is created on it, an existing one is reused (case-insensitive). Max 10 per task.
board_slugYesBoard slug where the task will be created
descriptionNoTask description (markdown supported)
watcher_idsNoArray of user UUIDs to add as watchers
assignee_idsNoArray of user UUIDs to assign
Behavior4/5

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

Annotations already declare non-read-only, non-idempotent, and non-destructive behavior. The description adds that the operation returns 'the created task with its generated id and number,' which gives useful output context. It does not describe side effects or auth needs, but the annotation coverage lowers the burden.

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 two sentences, front-loaded with the action and resource, and contains no filler or repetition. Every sentence contributes meaning: one states what it does and its requirements, the other states the return 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?

With 13 parameters and no output schema, the description provides the necessary high-level context: purpose, required inputs, and return shape. The schema handles all parameter details. It could mention optional capabilities (e.g., statuses/priorities) but those are covered thoroughly in the input schema, so the description is sufficiently complete.

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?

The schema description coverage is 100%, with every parameter receiving a detailed comment. The tool description mentions only the required board_slug and title, which are already documented in the schema. Thus the description adds no additional semantic value beyond the schema, earning the baseline 3.

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 begins with a specific verb and resource: 'Create a new task on a board.' This clearly distinguishes it from sibling tools like update_task, delete_task, and get_task. It also names the required inputs (board slug and title), making the purpose immediately clear.

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 states prerequisite inputs ('Requires the board slug and a title') but does not explicitly mention when not to use it or suggest alternatives like update_task for existing tasks. This is clear context without exclusions, so it earns a 4.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/gonnagetapower/kelvia-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server