Skip to main content
Glama
kirisawa-subaru

miband-health-mcp

set_band_reminder

Destructive

Create or update a Mi Band wrist reminder by setting its time, title, and recurrence. Specify an existing reminder ID to update or omit it to add a new one, then verify the stored details.

Instructions

Create or update one wrist reminder, then verify its actual stored fields.

at is an ISO timestamp with UTC offset; wire dates/times are UTC. title is the text shown on the band. Omit reminder_id to create, or use a listed ID to update. Supply all desired fields; unrelated entries are preserved. Recurrence follows the band's UTC schedule, so it does not automatically track local daylight-saving changes. On an unknown result inspect get_band_schedule before attempting another create. timeout_seconds: 5..90.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
atYes
titleYes
repeatNoonce
timezoneNo
reminder_idNo
timeout_secondsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4/5.0
Behavior5/5

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

With annotations already indicating destructive/write behavior, the description adds meaningful behavioral detail: created updates verify stored fields, unrelated entries are preserved, recurrence follows UTC and does not track DST, and timeout_seconds is range-limited to 5..90. No contradiction with annotations exists.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the core purpose, followed by parameter details and caveats. The text is slightly choppy in places, but every sentence contributes useful information without padding.

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?

The description covers key operational caveats, timeout bounds, and create/update semantics, which is good for a tool with six parameters. However, it does not clearly define the repeat or timezone parameters, leaving a meaningful gap in a callable description.

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 0%, so the description must compensate. It does explain 'at', 'title', 'reminder_id', and 'timeout_seconds', but repeat and timezone are only indirectly addressed through the recurrence/UTC caveat. The meaning of the timezone parameter in particular remains underspecified.

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 clearly states the action: 'Create or update one wrist reminder, then verify its actual stored fields,' naming both the verb and the resource. It is distinct from the sibling set_band_alarm by referring to a wrist reminder, but it does not explicitly contrast itself with that sibling.

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 concrete usage guidance: omit reminder_id to create, use a listed ID to update, supply all desired fields, and inspect get_band_schedule on an unknown result before retrying. It does not explicitly mention when to choose this tool over set_band_alarm, so it stops short of full alternative routing.

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