Skip to main content
Glama

get_latest_measurement

Read-only

Retrieves a member's current weigh-in with body composition and age_hours to show when they last stepped on the scale.

Instructions

Most recent weigh-in with its body composition.

Check age_hours: this is the last time the person stepped on the scale.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
memberNoName (e.g. 'Ann') or member_id from list_members. Omit for the account owner, or when the account has one member.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

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?

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds useful context about the `age_hours` field meaning 'last time the person stepped on the scale,' which is behavioral insight beyond the annotations, but nothing about empty results or freshness limits.

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?

Two short front-loaded sentences with no wasted words. The `age_hours` note is somewhat tangential to invoking the tool but is compact and 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?

An output schema exists and annotations cover the safety profile, so return values and read-only behavior need not be restated. For a zero-required-parameter lookup, the definition is nearly complete, missing only usage routing against get_measurement_history.

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?

Only one parameter and schema coverage is 100%, so the schema fully documents the optional `member` argument including omission behavior. The description adds no parameter-level meaning, which is the expected baseline when the schema does the work.

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?

States a specific resource and scope: 'Most recent weigh-in with its body composition.' It is clearly distinct from get_measurement_history, though it never names the sibling to make the contrast explicit.

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?

No when-to-use guidance is given. The description does not say to use this instead of get_measurement_history when only the newest record is needed, nor does it mention prerequisites or when results may be empty.

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