Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

delete_checklist_task_jwt

Delete a checklist task in IT Glue using JWT authentication, bypassing the public API's lack of task deletion support. Provide the task ID to confirm removal.

Instructions

Delete a checklist task using JWT authentication.

This tool uses JWT authentication because IT Glue's public API doesn't support task deletion.

Args: task_id: Task ID to delete

Returns: JSON string with deletion confirmation

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

B3.4/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does disclose that the operation deletes a task, uses JWT authentication, and returns a JSON confirmation string. However, it does not mention potential side effects, irreversibility, permission requirements, or failure behavior.

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?

The description is well-structured with an Args section and Returns section, and it is reasonably concise. The JWT rationale is useful, though the point that JWT authentication is used appears twice, creating slight redundancy.

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 single-parameter destructive operation, the description covers the core purpose, the parameter, and the return shape, and an output schema exists. It lacks information about authentication prerequisites, idempotency, or what happens if the task does not exist, but the simplicity of the tool keeps this from being a major gap.

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

Parameters3/5

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

Schema description coverage is 0%, so the description is the only documentation for the single parameter. It documents task_id as 'Task ID to delete,' which clarifies the parameter's role, but this adds little beyond what the parameter name and schema already imply. It is adequate but not rich.

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 clearly states a specific operation ('Delete a checklist task') and the resource affected. It also notes the JWT authentication approach, which distinguishes this tool from sibling tools like delete_checklists and makes its unique role easy to identify.

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?

The description explains why JWT authentication is used rather than the public API, but it gives no explicit guidance about when to choose this tool over alternatives, when not to use it, or what conditions are required before calling it. The intended use is mostly implied by the name and one-line operation.

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