Skip to main content
Glama
babybuddy

babybuddy-mcp

Official
by babybuddy

children_get_child

Retrieve a single child's profile using its unique slug, enabling quick access to specific child details without needing a numeric ID.

Instructions

Get a single child profile by slug. Children are keyed by slug, not numeric ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesSlug of the child to retrieve (the 'slug' field from list_children)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It usefully discloses that children are keyed by slug rather than numeric ID, which is a real behavioral nuance. It doesn't mention error cases or authentication, but for a simple read operation this is adequate.

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 concise sentences with no filler. The core action is front-loaded, and the key-based distinction is stated in the second sentence without redundancy.

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

Completeness5/5

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

For a single-parameter, single-resource retrieval tool with an output schema present, the description covers everything needed to call it correctly. No additional context about return values or nesting is required because the output schema exists.

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 coverage is 100% and the schema already explains that slug is the child's slug from list_children. The description repeats the slug concept but adds no additional meaning beyond the schema, so the baseline 3 is appropriate.

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 clearly states the tool 'gets a single child profile by slug,' specifying the exact verb, resource, and identifying key. It also distinguishes itself from list_children by emphasizing the singular retrieval and slug-based keying.

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 establishes clear usage context: use this when retrieving one child by slug, not when listing all children. It doesn't explicitly name alternatives or when-not conditions, but the singular-versus-list distinction is implicit and sufficient for this simple tool.

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