Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

get_location

Fetch a specific location's details from IT Glue using its unique ID, returning structured JSON data.

Instructions

Get a specific location by ID.

Args: location_id: The location ID

Returns: JSON string with location details

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
location_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/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 burden of behavioral disclosure. It communicates a read operation and states that the return value is a JSON string with location details, but it does not mention not-found/error behavior or authentication requirements. For a simple getter this is minimally adequate.

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, and structured with concise Args and Returns sections. Every sentence contributes useful information without filler.

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 read operation with an output schema, this description provides enough information to invoke the tool correctly. It lacks explicit alternative usage and error-case details, but those are not essential for a simple point lookup.

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?

The schema has one required integer parameter with no description coverage. The tool description's Args section restates 'location_id: The location ID', which adds little beyond the schema title, but the parameter is a self-explanatory opaque ID and does not require extensive additional semantics.

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 the verb 'Get', the resource 'location', and the access pattern 'specific ... by ID'. This clearly distinguishes it from collection-oriented siblings like list_locations and search_locations.

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 caller must already know the location ID, but the description does not explicitly name alternatives such as search_locations or list_locations, nor does it state when not to use this tool. Usage guidance is present only by implication.

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