Skip to main content
Glama

get_stats

Get daily activity and health summary for a given date: steps, calories, heart rate, stress, body battery, and sleep. Provide a date in YYYY-MM-DD format to receive the metrics.

Instructions

Get daily activity stats with curated essential metrics

Returns a summary of daily health and activity data including steps, calories, heart rate, stress, body battery, and sleep metrics.

Args: date: Date in YYYY-MM-DD format

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

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 carries the full burden of behavioral transparency. It states that the tool returns a summary of daily health metrics, which is clear, but it does not disclose any potential side effects, data source nuances, or response formatting details. This is sufficient for a simple read operation, though not richly informative.

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?

The description is compact, using two sentences to state the purpose and list the included metrics, followed by a clear Args section. It is front-loaded with the primary action and avoids any redundant or unnecessary wording.

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 simple read-only tool with one parameter and no output schema, the description is nearly complete. It specifies the input format and the type of data returned, leaving no critical gaps for the agent to make a correct call. Minor details like timezone handling are absent but not essential for the tool's basic use.

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?

The schema only defines 'date' as a required string with no description. The tool description adds crucial format information ('YYYY-MM-DD'), which goes beyond the schema and helps the agent provide a valid input. This increases the semantic clarity of the parameter.

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 the verb 'Get' and the resource 'daily activity stats', and it enumerates the specific metrics included (steps, calories, heart rate, stress, body battery, sleep). This distinguishes it from sibling tools that retrieve only individual metrics (e.g., get_steps_data, get_body_battery), though it does not explicitly name or contrast with those alternatives.

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?

The description does not provide explicit guidance on when to use this tool versus the many sibling tools. It implies a 'curated summary' but gives no direct instruction such as 'use this for a quick overview instead of calling multiple endpoints', leaving the agent to infer the intended use case.

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

Deploy Server

Other Tools