Skip to main content
Glama

upsert_profile

Idempotent

Upsert the current app user's fitness profile. Set timezone first: every daily total, streak and adherence window is bucketed by it and defaults to UTC. weight doubles as the fallback bodyweight for bodyweight-inclusive volume when no dated weight metric exists.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalNo
heightNocm
weightNokg
languageNo
timezoneNoIANA zone name, e.g. 'Europe/Warsaw'.
diet_typeNo
unit_systemNo
active_sportsNo
meals_per_dayNo
daily_fats_goalNo
daily_carbs_goalNo
daily_fiber_goalNog/day to reach
daily_sugar_limitNog/day to stay under
daily_calorie_goalNo
daily_protein_goalNo
daily_sodium_limitNomg/day to stay under
daily_water_goal_mlNo

TDQS

A4/5.0
Behavior4/5

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

Annotations already signal idempotency and non-destructiveness. The description adds meaningful behavioral context beyond annotations by disclosing that timezone determines how daily totals, streaks, and adherence windows are bucketed (defaulting to UTC), and that weight serves as a fallback bodyweight for bodyweight-inclusive volume. This enriches the agent's understanding of side effects and dependencies.

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 concise sentences, front-loaded with the main purpose, followed by two high-value caveats. No filler words; every sentence adds necessary context.

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?

For a 17-parameter tool, the description is relatively brief. It covers the key behavioral nuances (timezone bucketing and weight fallback) but does not explain whether unspecified fields are left unchanged or reset, nor any validation constraints. The idempotent annotation helps, but a bit more detail on partial-update behavior would increase completeness.

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

Parameters2/5

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

Schema description coverage is only 35% (6 of 17 parameters). The description meaningfully explains only timezone and weight, leaving the other 11 parameters without semantic elaboration. Given the low coverage, the description should compensate far more to clarify parameter meanings and interactions.

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 opens with a clear verb and resource: 'Upsert the current app user's fitness profile.' This precisely states the action and distinguishes it from siblings like get_profile (read) and log_* (data logging) tools. The unique scope 'current app user' also disambiguates from any multi-user context.

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 provides clear operational guidance, most notably 'Set timezone first' and explains the consequences of timezone and weight semantics. It implies usage for profile updates but does not explicitly contrast with alternative tools such as get_profile, though the tool's unique resource makes exclusion implicitly obvious.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation4/5

Most tools have clearly distinct purposes (meals, workouts, routines, body metrics, etc.). A few pairs like get_progress and get_muscle_recovery overlap in data but differ in usage, and the AI tools are separated by input type. Overall, an agent can reliably select the right tool.

Naming Consistency4/5

Tool names predominantly follow a verb_noun snake_case pattern (get_, log_, update_, delete_, search_, list_). The ai_* prefix is consistent but includes noun-like names (ai_meal_plan, ai_photo_macros) that deviate slightly from verb-first convention. Still predictable and readable.

Tool Count3/5

With 36 tools, the server exceeds the typical 'heavy' threshold, but the scope is broad covering meals, workouts, routines, metrics, AI features, and data sync. Each tool serves a distinct capability, so the count is justified though on the higher end.

Completeness4/5

The server provides solid lifecycle coverage for core resources: meals (create/read/update/delete), workouts (log/get/delete, set updates), body metrics (get/log with profile upsert), routines (list/get/instantiate), and exercise lookup (search/resolve/list). Minor gaps exist for updating/deleting cardio and water entries, but they are not critical.

Resources