Skip to main content
Glama

timezest_agents_get

Retrieve details for a specific TimeZest agent by providing the agent ID, enabling assistants to access agent information for scheduling and availability management.

Instructions

Get details for a specific agent by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentIdYesAgent ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv3.0.0

TDQS

A3.5/5.0
Behavior2/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 only states 'Get details' without mentioning error handling for invalid IDs, authentication requirements, or the structure of returned details. No side effects are indicated, but the lack of any behavioral context is a notable gap.

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 a single, front-loaded sentence with zero filler words. It conveys the essential action and scope immediately, and every word earns its place.

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

Completeness3/5

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

For a single-parameter get tool with no output schema and no annotations, the description is adequate but vague. It doesn't clarify what 'details' includes or how errors surface, which an agent would need for fully correct use. It is minimally acceptable but not complete.

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% and the only parameter, agentId, is already described as 'Agent ID'. The description's reference to 'by ID' adds no new semantic meaning beyond what the schema already conveys, so the baseline score of 3 is appropriate.

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 clearly states a specific verb ('Get'), resource ('agent'), and scope ('specific agent by ID'). This distinguishes it from the sibling timezest_agents_list, which implies listing multiple agents rather than fetching a single one.

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 that this tool should be used when a specific agent ID is known, contrasting with a list operation. However, it does not explicitly name alternatives, provide exclusions, or state when to use list vs get, leaving usage guidance implicit rather than explicit.

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