Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

get_checklist_template

Retrieve a specific checklist template by its ID, returning detailed template information in JSON format.

Instructions

Get a specific checklist template by ID.

Args: template_id: The checklist template ID

Returns: JSON string with template details

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
template_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It does disclose the return type ('JSON string with template details'), which is useful. However, it does not state whether the operation is read-only, what errors may occur, or any permission requirements, leaving the burden only partially fulfilled.

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 short, front-loaded with the purpose, and includes separate Args and Returns sections. Every sentence earns its place with no unnecessary fluff.

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 simple getter with one parameter, the description provides the core purpose, the required argument, and the return format. However, with no annotations or usage guidance, it lacks context about error behavior, whether the operation is safe/read-only, and how the template ID should be obtained.

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 for the missing parameter documentation. It only restates 'The checklist template ID', which adds no real meaning beyond the parameter name and title. It does not explain where the ID comes from, how it relates to list_checklist_templates, or any constraints.

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 operation is 'Get' and the resource is 'a specific checklist template' identified by ID. It is unambiguous, though it does not explicitly call out sibling tools like list_checklist_templates or get_checklist for differentiation.

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 'by ID' implies the tool should be used when a specific template_id is already known, but there is no explicit guidance about when to use list_checklist_templates instead or how to obtain a template_id. Usage context is only implicit.

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