Skip to main content
Glama

Snooze Eight Sleep Alarm

eight_sleep_snooze_alarm
Idempotent

Snooze an actively ringing Eight Sleep alarm by its alarm ID to stop the sound and delay the next alert. Requires explicit user intent.

Instructions

Snooze an actively ringing alarm. Gated by explicit_user_intent: true and EIGHT_SLEEP_ALLOW_MUTATIONS=true.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idNo
alarm_idYesEight Sleep alarm id from eight_sleep_get_alarms.
response_formatNomarkdown
explicit_user_intentNoMust be true after the user explicitly asked for this write. Combined with EIGHT_SLEEP_ALLOW_MUTATIONS=true.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
dataNo
noteNo
methodYes
endpointYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.2.13
  2. Removedv0.2.6
  3. First observedv0.2.5

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already convey that this is a mutating, non-destructive, idempotent operation. The description adds valuable behavioral context beyond the annotations by stating the preconditions: the alarm must be actively ringing and the call is gated by explicit user intent plus an environment flag.

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 two short sentences with no filler. The core action is front-loaded, and the gating requirement is stated separately and clearly.

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

Completeness4/5

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

Given the output schema exists and annotations are present, the description is adequately complete. It states the core action, the precondition, and the authorization gate. It could mention what happens if the alarm is not actively ringing, but the output schema likely covers error cases.

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 50%, and the two most behaviorally important parameters (alarm_id and explicit_user_intent) have descriptions in the schema. The tool description itself does not explain parameters, but the schema covers the critical ones, so the description does not need to fully compensate.

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 states a specific verb ('Snooze') and resource ('an actively ringing alarm'), making the tool's purpose immediately clear. The phrase 'actively ringing' helps distinguish it from related alarm tools such as eight_sleep_dismiss_alarm.

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 provides clear context: use it to snooze an actively ringing alarm and only when explicit_user_intent is true and EIGHT_SLEEP_ALLOW_MUTATIONS=true. It does not explicitly name alternatives or state when not to use it, but the ringing precondition and gating requirements give solid usage guidance.

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