Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

get_organization_locations

Retrieve all locations for a specific organization in IT Glue by providing its organization ID. Use pagination and output format options to control the result set.

Instructions

Get all locations for a specific organization.

Args: organization_id: The organization ID 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 the organization's locations

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
page_sizeNo
save_to_fileNo
output_formatNocompact
organization_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

No annotations exist, so the description carries the full burden. It does add useful behavior: output_format choices (full/compact/summary) and save_to_file saving to a temp file with path return for jq. However, the phrase 'all locations' is ambiguous alongside pagination parameters (page, page_size) — it does not clarify whether a single call returns all results or if the agent must paginate, which is a meaningful behavioral 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 one-line summary followed by Args and Returns sections. It is a bit longer than strictly necessary, but each parameter explanation carries useful information and the format is scannable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Although the description covers all parameters, it leaves a critical ambiguity: pagination behavior under 'Get all locations.' It does not state whether the tool auto-paginates or returns a single page, nor how output_format interacts with save_to_file ('full results' vs compact/summary). Without annotations or an output schema visible, this gap could cause an agent to misuse the tool or incorrectly assume a single call returns everything.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/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 thoroughly: organization_id is explained, page, page_size with a max of 1000, output_format with enumerated values and default, and save_to_file with its behavioral effect of saving to a temp file and returning a path. Every parameter receives semantic meaning beyond the bare schema.

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 states a specific verb and resource: 'Get all locations for a specific organization.' This clearly distinguishes it from get_location (single location) and implies organization scoping. However, it does not explicitly name sibling tools like list_locations or search_locations, so the differentiation is implicit rather than explicit.

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 usage context by requiring an organization_id and being organization-scoped, which suggests it is the right choice when locations are needed for a known organization. However, it provides no explicit guidance on when to use this tool versus sibling tools like list_locations or search_locations, and no exclusion criteria.

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