Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

get_checklist

Retrieve a specific checklist by ID from IT Glue, with optional inclusion of checklist tasks to view detailed task items.

Instructions

Get a specific checklist by ID.

Args: checklist_id: The checklist ID include_tasks: Whether to include checklist tasks

Returns: JSON string with checklist details

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
checklist_idYes
include_tasksNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral transparency burden. It explicitly discloses that the tool returns a 'JSON string with checklist details', which is useful because the agent knows to expect a serialized string. It does not mention error cases or authentication, but for a read-only ID lookup this is a reasonable level of disclosure.

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 front-loaded: the core purpose appears in the first sentence, followed by a clean Args/Returns structure. There is no filler or redundant repetition of the tool name.

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 simple two-parameter retrieval tool with an output schema, the description covers the essential elements: what it does, what arguments it takes, and the return type. It could be more complete by mentioning how checklist_id is obtained or by noting alternatives, but no critical information needed to invoke the tool correctly 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%, so the description must compensate, and it does by explicitly listing checklist_id and include_tasks with a short explanation for each. It adds meaning beyond the bare schema by clarifying that include_tasks controls whether checklist tasks are included in the response.

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 opens with 'Get a specific checklist by ID', which clearly states the action, resource, and unique identifier scope. This distinguishes it from listing tools like list_checklists or get_organization_checklists, since it targets retrieval by ID.

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 description implies the right use case: call it when you already have a checklist_id and want one specific checklist. It does not explicitly mention alternatives such as list_checklists or get_organization_checklists, nor does it state when not to use this tool, so the guidance is inferred rather than explicit.

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