Skip to main content
Glama

iam_timer_set_team

Schedule independent timers for an authorized team. Only an explicitly granted active leader may use this.

Instructions

Schedule independent timers for an authorized team. Only an explicitly granted active leader may use this.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteYes
teamYes
due_atYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.4.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden for behavioral disclosure. It usefully reveals a permission requirement and the scheduling/mutation nature of the action, but it does not clarify side effects, reversibility, or what happens to the timers after creation. Some behavioral context is present, but key details are missing.

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 compact two-sentence definition. It front-loads the core purpose and immediately adds the most important usage constraint. Every word earns its place with no filler.

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

Completeness2/5

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

Despite having an output schema, the description leaves important invocation details unresolved: the meaning of 'independent timers', how 'team' is identified, the expected date format for 'due_at', and how this tool differs from iam_timer_set_for. It is not complete enough for an agent to invoke with confidence.

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

Parameters2/5

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

The input schema has three required string parameters with no descriptions, and the description does not compensate. The word 'team' is partially clarified by 'authorized team', but 'note' and 'due_at' receive no guidance about format, meaning, length, or timezone.

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?

The description states a clear action—'Schedule independent timers'—with a specific target ('authorized team') and a notable access restriction ('Only an explicitly granted active leader may use this'). It is clear enough to distinguish from personal timer tools, though it does not explicitly name any sibling alternative.

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 gives an explicit eligibility constraint: only an explicitly granted active leader may use it. However, it does not explain when to choose this over nearby siblings like iam_timer_set or iam_timer_set_for, nor does it provide scenarios or exclusions beyond the authorization note.

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