Skip to main content
Glama
figranium

Figranium MCP Server

Official

schedule_describe

Read-onlyIdempotent

Validate and preview a schedule configuration before saving it. Get a clear description of cron or frequency settings to confirm execution timing.

Instructions

Validate and preview/describe a schedule configuration without saving it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
taskIdYesThe unique ID of the task.
frequencyNoThe frequency mode. Used if scheduleMode is 'frequency'.
dayOfMonthNoDay of the month (1-31) if frequency is 'monthly'.
daysOfWeekNoArray of days of the week if frequency is 'weekly'.
scheduleHourNoHour of execution (0-23) if frequency is 'daily', 'weekly', or 'monthly'.
scheduleModeYesWhether to define the schedule using 'cron' or structured 'frequency' fields.
cronExpressionNoStandard 5-field cron expression. Used if scheduleMode is 'cron'.
scheduleMinuteNoMinute of execution (0-59) if frequency is 'daily', 'weekly', or 'monthly'.
intervalMinutesNoInterval in minutes if frequency is 'interval'.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already provide readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds the 'validate and preview' behavior, which goes beyond the read-only hint by indicating it returns a validation result or preview. This is consistent with annotations and adds useful context.

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 conveys the purpose and key constraint ('without saving it') with no wasted words. It is concise and efficient.

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?

There is no output schema, so the description should clarify what the tool returns. It says 'preview/describe' but does not specify the format, whether validation errors are thrown, or how results are presented. This is a notable gap for a validation tool, though the read-only and idempotent hints mitigate some ambiguity.

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 all 9 parameters are documented in the schema. The description does not add any parameter-specific meaning beyond the schema, so the baseline of 3 applies.

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 action (validate and preview/describe) and the resource (schedule configuration), and explicitly notes it does not save. This differentiates it from schedule_set (which saves) and schedule_delete (which removes). The verb+resource is specific and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for validation/preview before committing, via the phrase 'without saving it'. It gives clear context for when to use it, though it does not explicitly name alternatives like schedule_set. This is adequate but lacks explicit exclusionary guidance.

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