Skip to main content
Glama

board_create_task

Create a project task with title, status, priority, and optional subtask or dependency links.

Instructions

Create a task in a project. Status defaults to 'todo' and priority to 'medium' if not specified. If the initial status is 'in_progress', started_at is auto-set to now; if 'done', completed_at is auto-set. Writes an activity_log entry for audit. Use parent_task_id to create a subtask under another task (common pattern for decomposing work). Use depends_on to express ordering ('task B blocks on task A'). Returns { id, title, status, priority, message }.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYesProject ID (from board_get_projects) where this task belongs
titleYesShort title — one line, what needs doing. Appears in handoff summaries and task lists.
descriptionNoLonger details: context, acceptance criteria, file refs, links. Recommended for any task that will outlive the current session.
statusNoInitial status. Default 'todo'. Use 'backlog' for not-yet-prioritized ideas.
priorityNoPriority — drives sort order in board_get_tasks and handoff. Default 'medium'. Reserve 'critical' for blocking issues.
assigned_agentNoAgent name responsible for this task (free-form string, e.g., 'main', 'code-reviewer', 'database-specialist'). Omit if unassigned.
parent_task_idNoIf this is a subtask, the ID of the parent task. Subtasks inherit no fields from the parent — they just share a parent_task_id link.
depends_onNoIDs of tasks that must complete before this one can start. The server does not auto-block — this is advisory metadata that callers can check.
riper_modeNoWhich RIPER phase this task belongs to. Useful when tasks span a multi-phase workflow.
metadataNoOptional key/value metadata (e.g., { file: 'src/foo.ts', line: 42, issue: 'XSS' }). Merged shallowly on board_update_task.
Behavior5/5

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

Discloses side effects: audits activity_log entry, auto-sets started_at/completed_at based on status, and notes depends_on is advisory. No annotations exist, so description fully covers behavioral traits.

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?

Six sentences, front-loaded with core purpose, every sentence adds value with no redundancy.

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?

Covers key aspects: defaults, side effects, subtask pattern, dependency advisory, and return fields. Missing error handling or idempotency, but sufficient for a creation tool of this complexity.

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%, but description adds value by explaining auto-set behavior for status transitions and contextual use of parent_task_id and depends_on beyond 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 clearly states it creates a task in a project and details defaults and side effects. It distinguishes from siblings by explicitly covering creation-specific features like subtasks and dependencies.

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?

Provides guidance on defaults, subtask creation (parent_task_id), and dependency usage (depends_on), and notes it's for decomposing work. Lacks explicit when-not-to-use or alternatives, but creation context is clear.

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/HuntsDesk/ve-vibe-board'

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