Skip to main content
Glama
Fino-wind

Vaultbeat MCP Server

Log weight (replaces day)

log_weight_entry
Destructive

Record a weight entry in kilograms for a specific date, overwriting any existing entry for that day. Syncs encrypted data to Vaultbeat and optionally to Apple Health, enabling trend tracking.

Instructions

Log the owner's weight (kg) on their behalf (agent write, 2026-07-21).

weight_kg: kilograms (positive, ≤500). date: LOCAL calendar day "YYYY-MM-DD" (default = today). Same-day upsert-in-place semantics (dayID = "body-{dayStart.epoch}") — re-logging the same day overwrites. Encrypted end-to-end before it ever leaves this machine.

Written data always lands in Vaultbeat cloud + MCP (visible to get_weight_trend). Whether it also reaches Apple Health depends on an iOS setting: Settings → Data & AI → "Allow AI to update Apple Health" (OFF by default). When it is on, weigh-ins logged here sync back into Apple Health on the next app sync.

⚠️ If the owner wants this number in the Apple Health app, tell them to turn that toggle ON — do NOT tell them to re-enter it by hand in the Vaultbeat weight card. Logging it in both places produces two entries for the same day from different sources and corrupts the trend line. (Before 2026-07-28 this docstring said propagation was impossible and instructed exactly that manual double-entry; the toggle shipped 2026-07-22.)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNo
weight_kgYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.8.1

TDQS

A4.9/5.0
Behavior5/5

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

Building on annotations (destructiveHint=true, readOnlyHint=false, idempotentHint=false), the description discloses what gets destroyed (same-day entry overwritten via dayID 'body-{dayStart.epoch}'), the always-on storage path (Vaultbeat cloud + MCP), conditional Apple Health sync gated by an iOS toggle, end-to-end encryption, and the trend-corruption failure mode. It deepens the annotations rather than repeating or contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Purpose is front-loaded and the layout (params → behavior → warnings) is logical, with nearly every sentence earning its place. The deduction is the closing historical note about the 2026-07-28 docstring revision — self-referential documentation history that an agent does not need and that slightly muddies the date timeline.

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 write tool with destructive overwrite and external Apple Health side effects, the description covers parameter constraints, defaults, storage destination, sync conditions, the corruption failure mode, and the exact user-facing instruction to give. Since an output schema exists, not explaining return values is acceptable, and nothing an agent needs to invoke or reason about this tool is missing.

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

Parameters5/5

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

Schema description coverage is 0%, so the description carries the full burden for both parameters. It supplies constraints (weight_kg must be positive and ≤500), format and meaning (date is a LOCAL 'YYYY-MM-DD' day), and the default behavior (today) — all absent from the bare schema.

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 opening sentence 'Log the owner's weight (kg) on their behalf' names a specific verb, resource, unit, and acting party, and the title 'Log weight' reinforces it. The body references get_weight_trend as the read counterpart, so an agent can distinguish this write tool from its sibling log_* tools without opening the schema.

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

Usage Guidelines5/5

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

The description gives explicit usage semantics: same-day upsert-in-place overwrite behavior and a default date of today. It also gives an explicit when-not instruction — do NOT tell the owner to re-enter the weight manually, because double-entry corrupts the trend line — plus the correct alternative (enable the 'Allow AI to update Apple Health' toggle), routing the agent's behavior precisely.

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