Skip to main content
Glama
ChocoTonic

FatSecret MCP Server

by ChocoTonic

get_weight_month

Read-only

Retrieve authenticated weight records for the month containing a specified epoch day. Use this to access monthly weight history for tracking and analysis.

Instructions

Get authenticated weight records for the month containing an epoch-day.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already cover read-only and non-destructive behavior. The description adds useful behavioral context by noting that the records are 'authenticated' and by explaining the date interpretation rule: the whole month containing the given epoch-day is returned. It does not address null-date behavior, but that is not a safety concern.

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 compact sentence that front-loads the verb and resource, with no filler or redundant detail. Every word contributes to understanding the tool's behavior.

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 one-parameter, read-only tool with an output schema provided, the description is nearly complete. The only meaningful gap is that the behavior when 'date' is null is left implicit.

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?

Schema coverage is 0%, but the description compensates by giving meaning to the 'date' parameter: it is an epoch-day used to select a month. It still leaves the null-default case unexplained, so it is not quite a 5.

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') plus a resource ('authenticated weight records') and a precise scope ('for the month containing an epoch-day'). This naturally distinguishes it from sibling tools like search_foods or get_user_food_entries.

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 sentence clearly implies when to use this tool: whenever weight records for a month are needed. However, it gives no explicit guidance about when not to use it or how it relates to alternatives among the sibling tools.

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