Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

uncomplete_checklist_task_jwt

Revert a checklist task to incomplete using JWT authentication. Provide the task ID to update its status and receive the updated task.

Instructions

Mark a checklist task as not completed using JWT authentication.

Args: task_id: Task ID to mark as incomplete

Returns: JSON string with the updated task

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

No annotations are present, so the description carries the behavioral burden. It does disclose JWT authentication and that the tool returns a JSON string with the updated task, but it does not address potential side effects, permission requirements, or reversibility beyond the obvious state change.

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 compact and well-structured with a purpose sentence plus Args and Returns sections. It contains no filler, and the key action is front-loaded.

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

Completeness4/5

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

For a one-parameter mutation tool with an output schema, the description covers the action, authentication mode, and return shape adequately. It could include more sibling context, but that gap is already captured in the usage guidelines dimension.

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 gives task_id a clear semantic role: 'Task ID to mark as incomplete.' For a single integer parameter, this is sufficient to understand what value to provide, though it adds no format or constraint details beyond the schema.

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 clearly states the action ('Mark a checklist task as not completed') and the resource, making the tool's purpose understandable. It differentiates from the completion tool by wording ('not completed') but does not explicitly name sibling alternatives like complete_checklist_task_jwt or uncomplete_checklist.

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 use this tool versus alternatives such as complete_checklist_task_jwt, update_checklist_task_jwt, or uncomplete_checklist. It only implies JWT-based usage without stating prerequisites, exclusions, or decision criteria.

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