Skip to main content
Glama

get_scheduled_task

Fetch a locally stored Cron or interval JavaScript task by ID to inspect its scheduling details and configuration.

Instructions

Fetches one locally stored Cron or interval JavaScript task by id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesScheduled task id

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It discloses only that the task is 'locally stored'; it says nothing about behavior for a nonexistent id, permissions, or the returned shape, leaving the agent to guess at failure modes.

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 sentence with zero filler, front-loading the verb and resource. Nothing in it is redundant or padded.

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 one-parameter read tool with no output schema and no annotations, the description is minimally sufficient but stops short of covering what happens when the id is unknown or what the response contains. Adequate, with visible gaps.

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% (the id parameter is documented as 'Scheduled task id'), so the schema already does the work. The description's 'by id' adds no syntax or format detail beyond it, making the baseline 3 appropriate.

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?

States a specific verb (fetches) and resource (Cron or interval JavaScript task) with a clear scope of one item by id, which implicitly separates it from list_scheduled_tasks. It does not explicitly name a sibling, but the singular/by-id framing is unambiguous.

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 'one ... by id' phrasing implies retrieval of a single task, contrasted with the list sibling, but there is no explicit when-to-use/when-not or reference to the runtime-status sibling. Usage is inferable rather than stated.

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