Skip to main content
Glama

withings_measurements

Fetches body measurements like weight, blood pressure, and ECG from Withings devices, grouped by session. Filter by type, date, or exclude manual entries.

Instructions

Body measurements (scale, blood pressure monitor, thermometer, ECG) grouped by measurement session.

types filters by comma-separated names or Withings type ids, e.g. "weight,fat_ratio,muscle_mass" or "1,6,76"; omit it for everything. Names: weight, height, fat_free_mass, fat_ratio, fat_mass, diastolic_bp, systolic_bp, heart_rate, temperature, spo2, body_temperature, skin_temperature, muscle_mass, hydration, bone_mass, pulse_wave_velocity, vo2_max, afib_ecg, qrs_interval, pr_interval, qt_interval, qtc_interval, afib_ppg, vascular_age, extracellular_water, intracellular_water, visceral_fat, basal_metabolic_rate, metabolic_age. Values are already decoded into the unit in the key (weight_kg, fat_ratio_pct, systolic_bp_mmHg, ...). include_manual=false keeps only device-captured groups (drops manual entries).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typesNo
end_dateNo
start_dateNo
include_manualNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral burden. It does add genuinely useful context: that values are pre-decoded with units baked into keys, and that include_manual=false drops manual entries (a filter behavior). However, it says nothing about pagination, auth requirements, limits, or return shape risk.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The core purpose and filter behavior are front-loaded and useful, but the long enumeration of 30+ type names bloats the description significantly. The list is helpful but indigestibly long for a tool description.

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 an output schema exists, return value explanation is unnecessary, and the description covers the measurement domains and the key filter. It is largely complete, though the date parameters and pagination behavior remain unaddressed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

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, and it does for `types` (with a full enumerated list and id mapping) and partially for `include_manual`. It provides no format guidance for start_date/end_date, leaving two of four parameters underspecified.

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 clearly states what the tool returns ('Body measurements ... grouped by measurement session'), naming the resource and the grouping scope. It does not explicitly differentiate itself from siblings like withings_activity or withings_sleep, which is what keeps it at 4 rather than 5.

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?

It implies when to use the tool (retrieving measurement data) and describes an optional filter, but it never explicitly says when-to-use vs alternatives or provides exclusions. No alternative routing is given despite four sibling tools existing.

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