KinToolkit: Medicine Dosage Calculator Label References for Children and Infants
Server Details
Tylenol (acetaminophen), Motrin (ibuprofen), Zyrtec (cetirizine): US pediatric dose labels.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 2 tools
The two tools have completely distinct roles: one lists the five supported bottle identifiers and concentrations, and the other retrieves the full label directions for an exact identifier. There is no purpose overlap, and the dependency between them is clearly stated.
Both tool names follow a consistent verb_noun snake_case pattern: list_calculator_bottles and get_label_directions. The names are predictable, parallel in style, and clearly indicate their respective actions and resources.
Two tools is minimal, but the domain is intentionally narrow: five fixed US liquid medicine bottles with read-only label references. The list/get pairing is tight and avoids redundant tools, though it sits slightly below the typical 3-15 tool range.
The core workflow—discover supported bottles, then retrieve full label directions and restrictions—is fully covered, and no mutating operations are needed for a static reference dataset. The only notable gap is that no dosage calculation or patient-specific suitability tool is exposed, though the descriptions explicitly disclaim that functionality.
Available Tools
2 toolsget_label_directionsGet printed label directionsAInspect
Look up one public label row using identifiers from list_calculator_bottles. Requires an exact bottle/concentration match. Returns label amount or ask_doctor, age and weight restrictions, full directions, source and canonical URL. Does not determine suitability for a child. Minimal operational telemetry records no tool arguments or results.
| Name | Required | Description | Default |
|---|---|---|---|
| label_band | Yes | ||
| product_id | Yes | ||
| concentration | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | Yes | |
| name | Yes | |
| source | Yes | |
| status | Yes | |
| age_band | Yes | |
| directions | Yes | |
| ingredient | Yes | |
| label_band | Yes | |
| product_id | Yes | |
| limitations | Yes | |
| weight_band | Yes | |
| label_amount | Yes | |
| concentration | Yes | |
| source_checked | Yes | |
| source_check_note | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With all annotation hints false or absent, the description carries the behavioral burden. It discloses the ask_doctor fallback, the exclusion of child-suitability assessment, and that operational telemetry records no arguments or results—useful behavioral context beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three tightly scoped sentences cover the action, prerequisites, return values, limitations, and telemetry. The core purpose is front-loaded, and every sentence adds new information without fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a three-enum lookup with a provided output schema, the description is nearly complete: it explains input provenance, exact-match requirements, output contents, and safety caveats. The only minor omission is explicit no-match/error behavior, which is likely handled by the output schema and is not critical here.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 clarifies product_id/concentration as requiring an exact bottle/concentration match and connects label_band to age/weight restrictions only indirectly. The enum values are largely self-explanatory, but label_band is not explicitly mapped.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and object ('Look up one public label row') and identifies where the identifiers come from, distinguishing it from list_calculator_bottles. It also lists exact return contents, so an agent knows precisely what this tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states a clear prerequisite: use identifiers from list_calculator_bottles and require an exact bottle/concentration match. It also flags a non-goal ('Does not determine suitability for a child'), which helps prevent misuse, though it does not explicitly name alternative tools or exhaustive when-not-to-use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_calculator_bottlesList supported medicine bottlesAInspect
List the five supported US liquid medicine bottles, exact concentrations and public label-band identifiers. No patient inputs. Minimal operational telemetry records no tool arguments or results.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| scope | Yes | |
| bottles | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
All four annotations are false, so the description carries the burden of behavioral disclosure. It adds two useful behavioral facts beyond the annotations: 'No patient inputs' (privacy scope) and 'Minimal operational telemetry records no tool arguments or results' (logging behavior). The verb 'list' strongly implies a read-only, non-mutating operation, so no side-effect ambiguity exists. It does not explicitly say 'read-only', but the description adds meaningful context beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with zero filler. The core purpose is front-loaded, followed by two concise behavioral constraints. Every sentence earns its place, and no information is repeated or extraneous.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter list tool with an output schema present, the description covers what is needed: it lists five US liquid medicine bottles, confirms no patient inputs, and notes telemetry limitations. Since the output schema exists, the description doesn't need to detail return structure. Nothing an agent needs to invoke this correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the schema is empty with 100% coverage, so the baseline is 4. The description adds no parameter-specific detail, which is appropriate; it only reinforces that no patient inputs are expected, aligning with the empty schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the exact action ('List'), the resource ('the five supported US liquid medicine bottles'), and the specific contents (exact concentrations and public label-band identifiers). This clearly distinguishes it from the sibling tool get_label_directions, which handles directions rather than enumeration.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage through its title and first sentence, and the phrase 'No patient inputs' hints that this is a general reference not tied to a specific patient. However, it does not explicitly mention the sibling tool get_label_directions or provide any when-not-to-use or alternative-routing guidance, leaving usage context only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- First observed
get_label_directions - First observed
list_calculator_bottles
Related MCP Connectors
US drug price benchmarks — what a pharmacy PAYS and what Medicare PAYS OUT.
Health Canada Drug Product Database (fleet #522).
DailyMed MCP — FDA Structured Product Labels via NLM
MEPS — what Americans actually take, and what for.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceMCP server for infant fever management that tracks symptoms, medication, and lab results, providing guideline-based escalation levels, pharmacokinetic predictions, and structured clinical reports.-
- AlicenseNot gradedqualityCmaintenanceQueries US prescription drug use by medical condition from AHRQ's Medical Expenditure Panel Survey — which drugs Americans take for a given condition, what a drug is prescribed for, and national volume, spending and out-of-pocket share for individual drugs or the top drugs of a year. Every response carries sample sizes and reliability flags so estimates are treated as rough magnitude and ranking rather than precise counts.47 npmMIT
- AlicenseAqualityBmaintenanceProvides infant health references including WHO growth percentiles, NIP vaccine schedules, and national checkup schedules as tools for LLMs.5180 npmMIT
- AlicenseAqualityBmaintenanceAn MCP server that gives LLMs live access to clinical trials, FDA drug recalls, adverse-event reports, drug labels, and drug-name normalization via six validated tools.6MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.