Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

complete_checklist_task_jwt

Complete IT Glue checklist tasks by providing a task ID with JWT authentication, and receive the updated task.

Instructions

Mark a checklist task as completed using JWT authentication.

Args: task_id: Task ID to complete

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?

With no annotations, the description carries the full disclosure burden. It discloses that the tool mutates a task to completed, requires JWT authentication, and returns a JSON string with the updated task. It does not cover side effects, permission requirements, reversibility, or error behavior, but the core behavioral expectation is present.

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 short and well-structured with Args and Returns sections. It front-loads the action and avoids filler. It earns its place, though a bit more context on usage would not hurt.

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 mutation tool with no annotations, the description covers the action, authentication method, parameter, and return value. Since an output schema exists, not detailing the return structure is acceptable. Gaps remain around when to use this tool versus sibling tools and how the JWT token is supplied, so it is only minimally complete.

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 states 'task_id: Task ID to complete,' which adds only minimal meaning beyond the schema's property name and title. It does not explain how to obtain the task_id, what type of task it refers to, or how it relates to checklist-level IDs, so the compensation is thin.

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 ('Mark') and resource ('checklist task') with an explicit outcome ('as completed'). It also includes 'using JWT authentication', which helps distinguish it from sibling tools like complete_checklist. The purpose is unambiguous.

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 phrase 'using JWT authentication' implies this variant is for JWT-authenticated operations, providing a weak usage signal. However, it does not explicitly state when to prefer it over complete_checklist or mention any exclusions or alternatives, leaving the selection largely to inference.

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