Skip to main content
Glama
chukaibejih

Task Manager MCP Server

by chukaibejih

delete_task

Remove a specified task from the task manager by providing its ID. This action helps clean up your task list.

Instructions

Delete a task

Args:
    task_id: ID of the task to delete

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.4/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 disclosure burden for a destructive operation, and it fails to meet it. It never states whether deletion is permanent or reversible, whether it cascades to subtasks/comments, what permissions are required, or how failures manifest. Only the verb "delete" hints at a write/mutation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The text is short and the action is front-loaded, and the Args block is a conventional docstring pattern. But its brevity reflects under-specification rather than disciplined conciseness, since the content contains almost no information an agent could not get from the tool name.

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?

For a destructive single-parameter tool with no annotations, no output schema, and 0% schema description coverage, the description is insufficient. It omits reversibility, side effects, and permission requirements, which are exactly the details an agent needs before invoking a delete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It only restates the parameter name as "ID of the task to delete," adding no type, format, or sourcing guidance beyond the schema's title. A single param at zero coverage demands more than a name echo.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

"Delete a task" names a specific verb and resource, so the core action is unambiguous. However, it adds nothing beyond the tool name delete_task and gives no scope detail (permanent vs. soft delete, cascade behavior), and it does not distinguish itself from siblings like complete_task or update_task. Minimally viable but thin.

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 when-to-use guidance, no prerequisites, and no mention of alternatives such as complete_task (which may be the correct action when work is finished rather than abandoned). The agent must infer everything from the name alone.

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