Skip to main content
Glama
babybuddy

babybuddy-mcp

Official
by babybuddy

pumping_create_pumping

Record a pumping session for a child with start/end times, amount, and optional notes.

Instructions

Record a pumping session.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endYesEnd time in ISO 8601 format
notesNoOptional notes
startYesStart time in ISO 8601 format (e.g. 2024-01-15T08:00:00)
amountNoAmount pumped (units depend on babybuddy settings)
child_idYesID of the child. Use list_children to get IDs.
timer_idNoUse a running timer instead of explicit start/end times. Use list_timers to find active timers.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3/5.0
Behavior2/5

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

With no annotations, the description must carry the burden of behavioral disclosure. 'Record a pumping session' implies persistence but does not state side effects, visibility, idempotency, or whether timer_id replaces start/end times. For a create operation, this is a notable gap.

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

Conciseness3/5

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

The description is very short and free of fluff, but it is under-specified. It essentially restates the tool name with a synonym; it is concise but lacks useful detail that would make the brevity valuable.

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

Completeness2/5

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

Although the schema is rich and complete for parameter descriptions, the tool description omits important context, such as how timer_id interacts with the required start/end fields. This ambiguity could lead an agent to submit conflicting values. The description does not fill any gaps left by the structured fields.

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 baseline is 3. The description adds no parameter-level meaning, but the schema already explains child_id, start, end, amount, notes, and timer_id. No additional compensation is needed.

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 uses the specific verb 'Record' with the clear resource 'a pumping session', which distinguishes this create operation from sibling tools like pumping_update_pumping, pumping_delete_pumping, and pumping_list_pumping. It unambiguously states the tool's core function.

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?

The description provides no guidance on when to use this tool versus alternatives. It does not mention when a pumping creation is appropriate, how it differs from feeding operations, or when to prefer pumping_update_pumping. The only usage hint is inside the child_id parameter description ('Use list_children to get IDs'), which is not in the tool description itself.

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