Skip to main content
Glama

accelo_create_checklist

Create a new checklist on an Accelo task by providing the task ID and checklist items. Use it to add ordered to-do items to a task for tracking work.

Instructions

Create a new checklist.

Args: against_type: Object type (required) — currently only 'task' is supported against_id: Object ID (required) items: Array of items (required). Each item: {"title": "...", "ordering": 0} fields: Additional fields to return

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYes
fieldsNo
against_idYes
against_typeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/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. It discloses the useful constraint that against_type currently only supports 'task', but says nothing about permissions required, side effects, whether the created checklist is returned, or error behavior for a mutation 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?

Front-loaded purpose sentence followed by a compact args list; every line maps to a parameter. No wasted prose, though the 'Args:' format is functional rather than polished.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a create tool with no annotations, no output schema, and 0% schema coverage, the description covers the inputs well but is silent on permissions, side effects, and downstream behavior. Since no output schema exists, it could reasonably note what the call yields, leaving it adequate but not complete.

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?

With 0% schema description coverage, the description must compensate, and it largely does: it documents all four parameters, marks the three required ones, explains the accepted value for against_type, and gives a concrete example item shape ({'title':'...','ordering':0}). Only 'fields' is left unexplained, keeping it out of the 5 range.

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?

States a specific verb and resource ('Create a new checklist'), which cleanly distinguishes it from the sibling update/delete/list checklist tools. It's clear but doesn't explicitly call out those siblings, so it stops short of the top band.

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 guidance on when to reach for this tool versus alternatives, nor any prerequisites or exclusions beyond the parameter-level note that only 'task' is supported for against_type. That note is a constraint, not usage routing.

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

Deploy Server

Other Tools