Skip to main content
Glama
YpsilonTM

Withings MCP Server

by YpsilonTM

withings_get_activity

Retrieve daily activity summaries from Withings trackers, including steps, distance, calories, and heart-rate zones, for a specified date range. Use this for day-level activity stats instead of minute-level data.

Instructions

Fetch daily activity summaries from the watch/tracker (steps, distance, calories, HR zones, etc.). Prefer this for day-level watch stats; use withings_get_intraday_activity for minute-level series.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
offsetNoPagination offset.
enddateymdNoEnd date YYYY-MM-DD. Default: today UTC.
data_fieldsNoComma-separated activity fields. Default: steps,distance,elevation,soft,moderate,intense,active,calories,totalcalories,hr_average,hr_min,hr_max,hr_zone_0,hr_zone_1,hr_zone_2,hr_zone_3
startdateymdNoStart date YYYY-MM-DD. Default: 7 days ago.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.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 must carry the burden of behavioral disclosure. It accurately indicates a read operation ('Fetch') and describes the data granularity, but it does not mention authentication requirements, pagination behavior, date boundaries/timezone handling, or any side effects. For a simple read-only tool this is adequate but not thorough.

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 sentences, no filler, with the core purpose front-loaded and the key alternative mention in the second sentence. Every word earns its place and the structure maximizes scannability for an agent.

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 low-complexity tool with four optional parameters fully documented in the schema and no output schema, the description is nearly complete. It explains what the tool returns, when to use it, and the relevant alternative. Minor gaps like pagination semantics and date-range boundaries are left to the schema, but the guidance is sufficient for correct selection and invocation.

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 coverage is 100%, with all four parameters having descriptive names, types, and defaults. The description adds a helpful list of example activity fields that align with data_fields, but it does not meaningfully enrich the schema's parameter documentation. Baseline 3 is appropriate since the schema already carries the semantic load.

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 ('Fetch') and resource ('daily activity summaries from the watch/tracker'), and lists concrete data types such as steps, distance, calories, and HR zones. It clearly differentiates itself from the close sibling withings_get_intraday_activity by emphasizing day-level summaries.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to prefer this tool ('day-level watch stats') and directs the agent to the alternative for minute-level series. This is direct, actionable guidance that resolves ambiguity without needing to inspect sibling schemas.

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