Skip to main content
Glama
maangy

WHOOP MCP Server

by maangy

get_profile

Retrieve your basic WHOOP profile information, including name and email, to verify account identity and user details.

Instructions

Get the user's basic WHOOP profile (name and email).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It clearly indicates a read operation ('Get') and discloses the exact return contents (name and email). It does not elaborate on side effects or auth, but for a zero-parameter read tool, this is sufficient.

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?

A single sentence that immediately states the resource, the scope, and the returned fields. There is no filler or repetition.

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

Completeness5/5

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

For a no-parameter, no-output-schema simple profile getter, the description is complete. It says what the tool retrieves and which fields are included, which is everything an agent needs to invoke and interpret it correctly.

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 input schema has zero parameters, so per the baseline for 0-param tools, a 4 is appropriate. The description adds meaningful context about what the returned profile contains, making the tool's purpose clearer.

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?

States a specific verb ('Get') and resource ('WHOOP profile'), and narrows scope to basic identifying fields ('name and email'). This distinguishes it clearly from sibling data tools like get_recovery, get_sleep, and get_workouts.

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 gives clear context that this is for retrieving the basic profile identity fields, which implies when it is needed. It does not explicitly name alternatives or exclusions, but with the sibling list, an agent will not mistake it for a data-specific endpoint.

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