Skip to main content
Glama
babybuddy

babybuddy-mcp

Official
by babybuddy

sleep_update_sleep

Update an existing sleep record by changing only the provided start, end, nap, or notes fields. Specify the sleep ID to modify the record.

Instructions

Update an existing sleep record. Only provided fields are changed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endNoNew end time in ISO 8601 format
napNoTrue if nap, False if night sleep
notesNoNew notes
startNoNew start time in ISO 8601 format
sleep_idYesID of the sleep record to update

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the burden and does disclose a key behavioral trait: only provided fields are changed, indicating a partial/patch update. However, it omits other behavior such as what happens if sleep_id does not exist, whether null clears a field, or any side effects.

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?

Two short sentences convey purpose and the critical partial-update behavior with zero redundancy. Every word earns its place.

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?

For a relatively simple update tool with a complete input schema and an output schema, the description covers the core purpose and update semantics. It could be slightly richer about null-clearing behavior, but nothing essential is missing for an agent to invoke it correctly.

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 100%, so all five parameters already have meaningful descriptions. The tool description adds no parameter-specific meaning beyond the general patch behavior, matching the baseline for high schema coverage.

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 ('Update'), a specific resource ('sleep record'), and the 'existing' qualifier, which distinguishes it from creation tools like sleep_create_sleep. This is immediately clear and unambiguous.

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 phrase 'existing sleep record' implies this tool is for modifying records already created, but there is no explicit guidance about when to choose this over sleep_create_sleep, sleep_delete_sleep, or the list tool. Usage context is implied, not stated.

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

Deploy Server

Other Tools