Skip to main content
Glama
AmitMatat
by AmitMatat

clokio_delete_task

Destructive

Delete a task permanently from your Clokio workspace by providing its unique ID. Use this action to remove tasks that are no longer needed.

Instructions

Delete a task by id. This is irreversible.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already flag destructiveHint=true and readOnlyHint=false, and the description adds 'This is irreversible,' which meaningfully warns the agent that the action cannot be undone. This goes beyond the annotation's generic destructive flag, though it does not detail possible cascading effects on related resources.

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?

Two short sentences with zero waste. The core action is front-loaded, and the irreversible consequence earns the second sentence.

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 one-parameter destructive tool with no output schema, the description and annotations together provide everything the agent needs: what to call, what to pass, and the key consequence. Nothing critical is missing.

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 0%, but the description says 'by id,' clarifying that the single required integer parameter is the target task's identifier. With only one simple parameter, this is sufficient compensation for the missing 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 states a specific verb ('Delete'), a resource ('task'), and the selection method ('by id'). It clearly distinguishes this tool from sibling tools like clokio_create_task, clokio_update_task, and clokio_get_task.

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 use case is implied: call this when a task must be removed. However, there is no explicit guidance about when not to use it or which sibling to prefer instead, such as using update_task for modifications or get_task for reads.

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