List Alarms
list_alarmsRetrieve all alarms and timers, including their scheduled times and repetition days.
Instructions
List all alarms and timers with their schedule and repetition days.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
list_alarmsRetrieve all alarms and timers, including their scheduled times and repetition days.
List all alarms and timers with their schedule and repetition days.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v2.1.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds that it returns schedule and repetition days, but does not disclose output format or ordering. With annotations, this is adequate but not deeply transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that leads with the verb and object, containing no redundant or extraneous information. It is appropriately sized for the tool's simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that there are no parameters, no output schema, and good annotations, the description fully specifies the tool's scope ('all alarms and timers') and the included fields. This is complete for a simple list operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the schema is empty (coverage 100% vacuously). The description doesn't need to explain parameters, and the baseline for 0 parameters is 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the function with the verb 'List' and the resource 'alarms and timers', adding details about schedule and repetition days. This distinguishes it from sibling tools like set_alarm and delete_alarm, which have mutation purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is provided about when to use this tool versus alternatives. The read-only nature is implied by 'List' but there is no mention of set_alarm or delete_alarm for modifications, so the usage context is only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.