Skip to main content
Glama

get_activity_hr_in_timezones

Retrieve heart rate data for an activity organized by time zone, helping you analyze performance and effort across different regions.

Instructions

Get heart rate data in different time zones for an activity

Args: activity_id: ID of the activity to retrieve heart rate time zone data for

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
activity_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It only restates the get operation and data scope; it does not clarify read-only behavior, timezone conversion semantics, whether data is available for all time zones, or any permissions or rate limits. The output schema may describe the return shape, but the description itself adds little behavioral transparency beyond the tool name.

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 and front-loaded: the core purpose appears in the first sentence, followed by a short Args block. There is no fluff or repetition of schema details, so every part of the description earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Complexity is low with one required parameter, and an output schema exists, so the description does not need to explain return values. However, with no annotations and no usage guidance, the description leaves timezone semantics and when-to-use questions unanswered. It is minimally complete for a simple getter but not richly contextual.

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 0%, so the description must compensate. It does add some semantic value with 'activity_id: ID of the activity to retrieve heart rate time zone data for,' which explains the parameter's role. However, it does not clarify accepted formats beyond the schema's anyOf, how to find or interpret the ID, or behavior when the activity does not exist, so the compensation is minimal though adequate for a single obvious parameter.

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 names the specific operation: 'Get heart rate data in different time zones for an activity.' This gives a clear verb, resource, and scope. It distinguishes the tool from the closely named sibling get_activity_power_in_timezones by specifying heart-rate data rather than power data.

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 guidance about when to use this tool versus alternatives such as get_heart_rates, get_activity_splits, or get_activity_power_in_timezones. The only contextual clue is 'for an activity,' which implies an activity_id is needed but does not explain when this endpoint is the right choice.

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