Skip to main content
Glama

Delete Checklist Item

kaiten_delete_checklist_item
Destructive

Remove a single checklist item from a Kaiten card. Verify cardId, checklistId, and itemId before deleting to avoid unintended removal, as only itemId is used for lookup.

Instructions

Remove a single item from a checklist. cardId, checklistId, and itemId all from kaiten_get_checklist. NOTE: Kaiten resolves the item by itemId alone — wrong cardId/checklistId still deletes the real item. Verify the pair before deleting.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cardIdYesCard ID
itemIdYesItem ID
checklistIdYesChecklist ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.7

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare destructiveHint=true, but the description adds critical behavioral context: Kaiten resolves the deletion by itemId alone, so incorrect cardId/checklistId values still delete the real item. This warning goes beyond the schema and annotations and is essential for safe use.

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 three sentences with no filler: the action is front-loaded, the ID sourcing is explicit, and the critical warning is placed last for emphasis. Every sentence earns its place.

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

Completeness5/5

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

For a destructive single-item deletion tool, the description covers what is deleted, where the IDs come from, and the key safety caveat. No output schema exists, but deletion tools generally don't need return-value detail, and the annotations plus description together give an agent everything needed to invoke it correctly.

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 description coverage is 100%, so the baseline is 3. The description adds meaningful parameter semantics by stating that all three IDs originate from kaiten_get_checklist and by clarifying that itemId is the authoritative resolver while cardId/checklistId are not validated. This is valuable beyond the schema's simple 'ID' 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 states a specific action and resource: 'Remove a single item from a checklist.' It clearly differentiates from sibling tools like kaiten_delete_checklist and kaiten_update_checklist_item by emphasizing 'single item,' so an agent can distinguish it without opening schemas.

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 provides clear context by instructing that cardId, checklistId, and itemId should all come from kaiten_get_checklist, and it gives a safety directive: 'Verify the pair before deleting.' It does not explicitly name when not to use the tool versus alternatives, but the usage context is strong enough for correct selection.

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