Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

get_organization_domains

Retrieve every domain associated with an IT Glue organization. Control output with pagination, choose compact or full format, or save results to a file for further processing.

Instructions

Get all domains 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 domains

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

A4.4/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 full burden of behavioral disclosure. It covers output format variants, pagination behavior, page_size limits, and the save_to_file side effect that writes to a temp file and returns its path. This is meaningful behavioral context beyond a simple read operation.

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 Args/Returns structure is clear and front-loaded with the tool's purpose. Every parameter line adds semantic value beyond the schema, with no filler or redundancy.

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

Completeness5/5

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

The description fully covers the input parameters, output behavior, output format options, and file-saving side effect. For a read-only domain retrieval tool with an output schema available, nothing essential for correct invocation is missing.

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. It documents every parameter and adds details the schema lacks: page starts at 1, page_size max is 1000, output_format has enumerated values and a default, and save_to_file explains its side effect. This is excellent parameter-level guidance.

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 a specific action and resource: getting all domains for a specific organization. This clearly distinguishes it from global domain tools like list_domains, get_domain, and search_domains among the siblings.

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 'for a specific organization' implies when this tool should be used, but the description does not explicitly mention alternatives or exclusion conditions. Usage guidance is present but left to inference rather than stated directly.

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