Skip to main content
Glama

apply_schedules

Idempotent

Evaluate parental control schedules and manual overrides, then push the resulting allow/block changes to the router.

Instructions

Evaluate schedules and manual overrides now and push any needed allow/block changes to the router.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior4/5

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

Annotations give readOnlyHint=false, idempotentHint=true, destructiveHint=false. The description adds real context beyond them: it's an evaluation/apply step that modifies router allow/block state as a side effect, and it folds in manual overrides. That explains the write-nature and the idempotent nature. It doesn't discuss frequency, cost, or concurrency, but it adds meaningful behavior the annotations don't.

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?

One sentence, front-loaded with the action and ending with the effect. No filler; every clause 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?

With no params and an output schema present, the return values needn't be explained. But given the crowded access/schedule sibling set and the fact that this is a state-mutating apply step, the description should say when to invoke it relative to add_schedule/remove_schedule/set_access. That routing guidance is the missing piece.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Zero parameters, so the baseline is 4. The description correctly implies no inputs are needed ('evaluate ... now'), consistent with the empty schema. Nothing to compensate for.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

It names a verb ('Evaluate') and a resource ('schedules and manual overrides') and states the effect ('push any needed allow/block changes to the router'). But it doesn't distinguish itself from the siblings add_schedule, list_schedules, set_access, access_status, which all touch schedules/access. The purpose is understandable but sibling differentiation is weak.

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

Usage Guidelines2/5

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

There is no explicit when-to-use. The description implies this is the trigger that materializes schedule state, but it never says to call it after add_schedule/remove_schedule, or how it differs from set_access. No alternatives or exclusions are mentioned despite many siblings occupying the same domain.

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