Skip to main content
Glama

Read an FDA label section

label_section
Read-onlyIdempotent

Fetch a chosen section from an official FDA drug label, returning the label's own text with citations and noting when the section is missing.

Instructions

Returns one topic of the official FDA label as the label's own text under its headings, citing the label's set id, version and date. Says so when the label has no such section.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
drugNoDrug name, NDC or label setid
setidNoA specific DailyMed label
topicYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
foundYes
labelYes
topicYes
sectionsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, open-world, and non-destructive behavior. The description adds valuable behavioral detail beyond those flags: it returns the label's own text under its headings, cites set id/version/date, and explicitly says so when the section is absent. This is useful without contradicting the annotations.

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 tightly written sentences, front-loaded with the core action and resource, then adding the key behavioral nuance and missing-section handling. Every sentence earns its place with no filler.

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?

Given the output schema, rich annotations, and enum-based topic parameter, the description covers the essential behavior well. It could add guidance on how to choose between 'drug' and 'setid', but the schema already describes those fields, so the description is sufficiently complete for an agent to invoke the tool 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 67%, with 'drug' and 'setid' already documented in the schema and 'topic' fully enumerated. The description adds little parameter-level meaning beyond saying 'one topic' and the missing-section behavior, so the schema carries most of the semantic weight.

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 a specific verb ('Returns') and identifies the exact resource: one topic of the official FDA label, rendered as the label's own text under its headings. It also names the metadata cited (set id, version, date), which makes the tool's function unambiguous and distinguishes it from sibling search tools.

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 description implies the use case: fetch a specific labeled section from an FDA label and get the label's own wording. However, it does not explicitly state when to use this tool versus alternatives like search_label or find_drug, nor does it mention any exclusions or prerequisites.

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