Skip to main content
Glama
emre6943

Trackfusion MCP Server

by emre6943

get_nutrition_goals

Retrieve daily nutrition goals for calories and macros to tailor dietary recommendations and track user progress.

Instructions

Get the user's daily nutrition goals (calories and macros)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the transparency burden. 'Get' clearly signals a read-only operation, and the parenthetical explains what data is returned. It does not detail default values, units, or behavior if goals are unset, but for a zero-parameter getter the behavior is sufficiently disclosed.

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 a single, compact sentence that front-loads the action and resource, then adds a useful clarifying parenthetical. Every word contributes value with no redundancy.

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?

For a simple zero-parameter getter, the description adequately states what will be returned. It does not describe the exact response shape or units, but no output schema exists and the description covers the essential retrieval intent well enough for an agent to invoke 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 tool takes zero parameters, so the input schema is trivially complete. Per the rubric, zero params baseline is 4; the description adds no parameter details because none are needed.

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 uses a specific verb ('Get') and identifies a precise resource ('the user's daily nutrition goals') with clarifying content ('calories and macros'). This clearly distinguishes it from sibling tools like set_nutrition_goals and get_diet_daily_summary.

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 description implies when to use the tool — when the user's current daily nutrition goals are needed — but it does not explicitly state when not to use it or mention alternatives. Usage is reasonably clear from the 'Get' verb and the resource name, but there is no explicit guidance.

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