Skip to main content
Glama

Create task

twenty_create_task
Destructive

Create a task. title is required. Twenty REST: POST /rest/tasks.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoTask body / description.
dueAtNoDue date/time (ISO 8601).
extraNoPassthrough object of additional/custom fields merged into the request body verbatim.
titleYesThe task title (required).
statusNoTask status — e.g. TODO, IN_PROGRESS, DONE.
assigneeIdNoId of the workspace member assigned to the task.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.2/5.0
Behavior2/5

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

Annotations already include destructiveHint=true, indicating this is a mutation. The description adds only the REST endpoint, which is implementation detail rather than behavioral context such as what is created, return format, or permissions. No additional transparency beyond the annotation is provided.

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 exceptionally concise: a single sentence with the core action plus a REST endpoint hint. No word is wasted, and the most important information is front-loaded.

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?

Given the absence of an output schema and the presence of six parameters including a nested 'extra' passthrough, the description is too terse. It does not explain what the tool returns, how 'extra' should be used, or any other operational context necessary for complete understanding.

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 has 100% description coverage with meaningful per-parameter descriptions. The description's note that 'title is required' is redundant with the schema's required field and adds no extra semantic value. The baseline of 3 applies because schema carries the parameter details.

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 'Create a task' with a specific verb and resource, which distinguishes it from sibling tools like create_company or create_note. It also provides the underlying REST endpoint for clarity.

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?

The description does not provide any guidance on when to use this tool versus alternatives, nor does it mention prerequisites or exclusions. The only usage hint is the implied context from the tool name and the required 'title' field.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation5/5

Each tool follows a clear action-entity pattern, so there is no overlap; even the metadata listing is distinct from record operations. No two tools could be confused.

Naming Consistency5/5

All tools use the twenty_<verb>_<entity> convention with verbs create/get/list/update, in lowercase snake_case. Naming is perfectly consistent across the set.

Tool Count4/5

20 tools is slightly above the typical well-scoped range but justified by five core entities each needing create/get/list/update. However, the count feels a bit heavy, especially without delete tools.

Completeness3/5

The server covers create, read, and list for all entities, and update for most, but lacks delete operations entirely and does not support updating notes. These are notable gaps in full lifecycle management.