Skip to main content
Glama

timezest_scheduling_get

Retrieve detailed information about a specific scheduling request by its ID. Get status, timings, and related details to review or manage the request.

Instructions

Get details for a specific scheduling request by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
requestIdYesScheduling request ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv3.0.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 transparency burden. 'Get' signals a non-mutating lookup, but there is no mention of not-found behavior, response shape, or access requirements.

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?

A single front-loaded sentence states the operation, resource, and identifying input with no filler or duplication of schema content.

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 simple single-parameter getter with no output schema, the description provides the essential invocation context. 'Details' is somewhat vague, but the tool is simple enough that no critical information is missing.

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?

Schema coverage is 100%, so the requestId parameter is already documented. The description adds no meaning beyond reinforcing that the ID identifies the scheduling request.

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 uses a specific verb and resource ('Get details for a specific scheduling request') and scopes it by ID, which cleanly distinguishes it from sibling tools like timezest_scheduling_list and timezest_scheduling_cancel.

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?

'by ID' implies use when an agent already has a requestId and wants a single request's details, but the description never explicitly says when to prefer this over list/cancel or what conditions rule it out.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.