Skip to main content
Glama
babybuddy

babybuddy-mcp

Official
by babybuddy

measurements_create_height

Record a child's height in centimeters with a measurement date. Specify child ID and optional notes to log height data in Baby Buddy.

Instructions

Record a height measurement.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYesMeasurement date in YYYY-MM-DD format
notesNoOptional notes
heightYesHeight in centimeters
child_idYesID of the child. Use list_children to get IDs.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. 'Record' implies a persistent write operation, but the description does not mention required child context, idempotency, side effects, or what the response contains. This is similar to a minimal mutation description that only names the action.

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 extremely short with no wasted words, and the operative verb is front-loaded. It is appropriately concise, though it leaves some informational gaps that other dimensions capture.

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?

For a simple create tool with a fully documented schema and an output schema available, the description is minimally viable. However, it lacks sibling differentiation and any usage context, so an agent receives no support beyond the raw schema and tool name.

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 the input schema already documents child_id, date, height, and notes thoroughly. The description adds no parameter-specific meaning, but the baseline of 3 applies because the schema does the heavy lifting.

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 uses a specific verb ('Record') and a clear resource ('a height measurement'), so an agent can immediately tell this creates a height entry rather than lists, updates, or deletes one. It does not explicitly differentiate from sibling create tools like measurements_create_weight, but the resource name 'height' carries that distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives such as measurements_list_height or measurements_update_height. The description provides no context, prerequisites, or exclusions, leaving the agent to infer usage entirely from the tool name and schema.

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