Skip to main content
Glama
one-ade
by one-ade

Get Person

get_person

Retrieve complete biographical details, alias names, birthday records, and source lineage for a specific person ID.

Instructions

Get complete biographical details, all alias names, full birthday records, and source lineage for a specific person ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
person_idYesThe unique ID of the person (obtained from search_person or get_birthdays).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It implies a read-only lookup by the word 'Get' and discloses the breadth of the returned record, but says nothing about behavior on an unknown ID, authentication needs, or rate limits. Adequate for a simple getter, but thin given zero annotation coverage.

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?

One front-loaded sentence with no filler; the verb and resource come first and the returned fields follow. The enumeration is slightly list-heavy but every item is informative.

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?

For a single-parameter read tool with a fully documented schema and an output schema that defines the return shape, this is nearly sufficient. Only the absence of any when-to-use guidance keeps it from being complete.

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% for the single person_id parameter, so the baseline is 3. The description only restates that the lookup is keyed by 'a specific person ID' and adds no format, range, or sourcing detail beyond the schema.

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 names a specific verb ('Get') and resource ('person'), then enumerates the payload returned (biographical details, alias names, birthday records, source lineage). That field list implicitly separates it from search_person and get_birthdays, though no sibling is named outright.

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 statement of when to call this versus search_person or get_birthdays, nor any prerequisite or exclusion. The only routing hint ('obtained from search_person or get_birthdays') lives in the schema's person_id description, not the tool description.

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