Skip to main content
Glama
AmitMatat
by AmitMatat

clokio_create_task

Create a task in a project. Use employee codes for assignees and creator; set title, project ID, priority, due date, labels, status, and description.

Instructions

Create a task in a project. assignees/creator use employee_code (e.g. "00080"), not internal ids. To attribute the task to a person set creator_employee_code, otherwise it shows as the API key owner.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
statusNoStatus slug
due_dateNoYYYY-MM-DD
priorityNo
project_idYes
descriptionNoHTML or plain text
label_namesNo
creator_employee_codeNo
assignee_employee_codesNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.3/5.0
Behavior3/5

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

Annotations provide only readOnlyHint=false and destructiveHint=false, so the description carries most of the behavioral burden. It discloses one genuinely useful behavioral trait: without creator_employee_code, the task defaults to the API key owner. This adds value beyond the annotations. However, it doesn't disclose mutation consequences, required permissions, or what happens on failure, leaving a thin behavioral picture for a mutating tool.

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?

Two sentences with no wasted words. The primary purpose is front-loaded, and the critical employee_code gotcha follows immediately. It earns its length and is easy to scan.

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?

With 9 parameters, 33% schema coverage, and no output schema, the description should fill more gaps. It addresses the attribution gotcha but says nothing about the response/return value, other parameter semantics, or expected behavior for a create operation. For a tool of this complexity with no output schema, the description leaves significant context missing.

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 only 33% (3 of 9 params documented), so the description must compensate. It adds critical meaning for creator_employee_code and assignee_employee_codes by specifying the employee_code format (e.g., '00080') and that internal IDs are not used. This is important, but it leaves the other undocumented parameters (label_names, project_id semantics, status slug format) unaddressed, so compensation is only partial.

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: 'Create a task in a project.' This is clear and distinguishes it from siblings like clokio_update_task and clokio_delete_task by the create verb. However, it doesn't explicitly name a sibling it is not, though the action itself makes the distinction obvious.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives usage guidance on how to correctly attribute the task: use employee_code format for assignees/creator, and set creator_employee_code to attribute to a person rather than the API key owner. This is valuable 'how-to' context. But it provides no when-to-use vs. alternatives guidance (e.g., when to use clokio_update_task or clokio_set_task_assignees), and no exclusions.

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