Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

list_locations

Fetch IT Glue locations filtered by organization, name, city, region, country, or primary status. Returns JSON with pagination and output format options.

Instructions

List locations from IT Glue.

Args: organization_id: Filter by organization ID name: Filter by location name (partial match) city: Filter by city region_id: Filter by region/state ID country_id: Filter by country ID primary: Filter by primary location status page: Page number (starts at 1) page_size: Number of results per page (max 1000) output_format: Output format - "full" (all fields), "compact" (key fields only), or "summary" (counts and IDs only). Default: compact save_to_file: If True, saves full results to a temp file and returns the path for jq processing

Returns: JSON string with list of locations

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNo
nameNo
pageNo
primaryNo
page_sizeNo
region_idNo
country_idNo
save_to_fileNo
output_formatNocompact
organization_idNo

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, the description carries the full behavioral burden. It discloses some behaviors: save_to_file saves results to a temp file and returns a path for jq processing, and output_format changes the shape of results. However, it does not mention auth requirements, rate limits, side effects, or that this is a read-only operation. The absence of any annotation makes this a moderate gap.

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 a clear purpose line followed by an Args list and a Returns line. It is not overly verbose, and each parameter earns its place. The front-loading of the purpose and the organized parameter list make it easy to scan. A few extra words could be trimmed, but overall it is appropriately concise.

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 tool with 10 parameters and an output schema present, the description covers all parameters and states the return type. It does not mention error handling, edge cases, or usage examples, but for a listing tool this is fairly complete. The presence of an output schema reduces the need to describe return structure, and the description provides enough context to call the tool correctly.

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 coverage is 0%, so the description must explain parameters, and it does. Each parameter is listed with a brief filter description (e.g., 'Filter by organization ID', 'Filter by location name (partial match)'). It also explains page_size max, output_format options, and save_to_file behavior. This goes beyond the schema's types and defaults, though it lacks examples or deeper 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 'List locations from IT Glue' with a specific verb and resource. It distinguishes the tool by its name from siblings like search_locations and get_location, but does not explicitly explain when to use this list tool versus a search. The purpose is unambiguous, though sibling differentiation relies on the tool name rather than the description.

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 provides no guidance on when to use this tool versus alternatives such as search_locations or get_location. It does not mention scenarios where listing is appropriate or where searching would be better. There is no explicit 'when not to use' or reference to sibling tools, leaving the agent to infer usage context.

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