Skip to main content
Glama

check_schedule

Check the status of a cron schedule — is it active, when does it next run, how many times has it executed?

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idNoAlternatively list all schedules for this agent
schedule_idNoSchedule UUID from registration

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the burden. It discloses the returned information (status, next run, count) but does not explicitly confirm read-only behavior, error handling, or permissions. The verb 'check' implies safety, but it's not explicitly stated.

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 that efficiently communicates the tool's purpose and key output aspects. No wasted words.

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?

Given the tool's simplicity (2 optional params, no output schema), the description adequately explains what the tool does and what it returns. It lacks error-condition details, but for a status-check tool with no side effects, it is reasonably 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 description coverage is 100%, so the baseline is 3. The description adds no additional parameter explanation beyond what the schema already provides; the schema itself gives meaningful descriptions for both parameters.

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 the tool checks cron schedule status with specific aspects: active, next run time, and execution count. This distinguishes it from siblings like cancel_schedule, schedule_task, and get_execution_history.

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 for checking schedule status but does not explicitly state when to use this tool versus alternatives (e.g., get_execution_history for detailed past runs). It gives context but no exclusions or direct comparisons.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool targets a distinct aspect of cron schedule management: create, cancel, check status, and view history. There is no overlap between these operations.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case: cancel_schedule, check_schedule, get_execution_history, schedule_task. The pattern is predictable and clear.

Tool Count5/5

Four tools is well-scoped for a cron scheduling server, covering the core lifecycle without unnecessary bloat. Each tool serves a distinct and necessary purpose.

Completeness4/5

The toolset covers create (schedule_task), read (check_schedule), delete (cancel_schedule), and history (get_execution_history). The only notable gap is the lack of an update operation, but users can work around this by canceling and recreating a schedule.

Resources