Skip to main content
Glama

Get Google Health Profile

google_health_get_profile
Read-onlyIdempotent

Fetch user profile details from Google Health to provide personal context for health data insights. Requires profile authorization.

Instructions

Get authenticated user profile details from Google Health. Requires profile scope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
privacy_modeNoOptional per-call privacy override. Defaults to GOOGLE_HEALTH_PRIVACY_MODE or structured. raw returns upstream Google Health JSON.
response_formatNomarkdown
explicit_user_intentNoRequired true when privacy_mode=raw (agent escalation of redaction).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYes
endpointYes
privacy_modeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.7.7
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • changedOutput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. Changed1 schema field changedv0.7.3
    • addedInput schema / properties / explicit_user_intent
      Added value: +{
      +  "description": "Required true when privacy_mode=raw (agent escalation of redaction).",
      +  "type": "boolean"
      +}
  3. First observedv0.1.3

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already establish read-only, idempotent, and non-destructive behavior. The description adds the auth scope requirement, which is genuinely useful beyond annotations. It does not disclose other behavioral details such as redaction or privacy-mode effects, but the output schema and parameter descriptions partially cover those, so the added value lands at an adequate, not exceptional, level.

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 two short sentences with no redundancy. The core purpose is front-loaded and the scope prerequisite is told in one additional sentence. Every word earns its place.

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?

Given the low complexity (zero required parameters, no nested objects), rich annotations, and presence of an output schema, the description is mostly sufficient. The main gap is the lack of sibling differentiation, especially against google_health_profile_get, but nothing critical about invoking the tool is missing.

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?

The description adds no parameter-level detail; the schema provides descriptions for privacy_mode and explicit_user_intent, and response_format has a default and enum. With schema coverage around 67%, the description does not compensate for the half-documented response_format parameter, but the enum values are largely self-explanatory, so the baseline score of 3 is appropriate.

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 action ('Get'), the resource ('authenticated user profile details'), and the source ('Google Health'), so an agent can infer the tool's basic purpose. However, it does not distinguish this from the nearly identically named sibling 'google_health_profile_get', so it stops short of full sibling differentiation.

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

Usage Guidelines3/5

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

The 'Requires profile scope' note provides a useful prerequisite and implies this is the tool for retrieving the authenticated user's profile. There is no explicit guidance about when to prefer this over alternatives such as google_health_profile_get, google_health_get_identity, or google_health_get_settings, leaving selection among siblings to inference.

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