Skip to main content
Glama

get_adhoc_challenges

Fetch user-created social challenges from Garmin Connect, including step competitions with friends, with optional pagination parameters for start index and limit.

Instructions

Get user-created social/group challenges (e.g., step competitions with friends)

Returns challenges created by users to compete with connections. These are different from official Garmin badge challenges.

Args: start: Starting index for pagination (default 0) limit: Maximum number of challenges to return (default 20, max 100)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
startNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It states that the tool 'returns' challenges, indicating a read operation, but does not disclose potential errors, rate limits, or any additional behavior beyond the basic retrieval. The differentiation from badge challenges adds some context but lacks thorough behavioral disclosure.

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 concise, consisting of two sentences that front-load the purpose and then list the parameters. There is no fluff or redundancy; every sentence adds value.

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?

The tool is positioned within the context of challenges by explicitly contrasting with official badge challenges, and the parameters are fully explained. However, the description does not mention the response structure or any related usage notes, leaving a minor gap in completeness for an agent encountering this tool for the first time.

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

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description provides meaningful semantics for both parameters: 'start' is the starting index for pagination, and 'limit' is the maximum number to return (with a max of 100). This goes beyond the bare schema types and defaults, giving the agent clear guidance on how to use the parameters.

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 clearly states that the tool retrieves user-created social/group challenges, distinguishing them from official Garmin badge challenges. The verb 'Get' and specific resource type make the purpose unambiguous.

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

Usage Guidelines4/5

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

The description explicitly notes that these challenges are different from official badge challenges, which implies a contrast with sibling tools like get_badge_challenges. However, it does not explicitly state 'use this when you need user-created challenges, use the other for official ones,' leaving some inference to the agent.

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