Skip to main content
Glama
andreasd083

amazing-marvin-complete-mcp

get_habit

Read-only

Retrieve the complete tracking record and full history for a specific habit using its habit ID, providing the source of truth for recordings.

Instructions

Get the server's tracking record for a single habit (habitId + full history — the source of truth for recordings). Note: the response lacks title and settings; those are in list_habits.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
habit_idYesHabit ID (from list_habits)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, so the safety profile is covered. The description adds meaningful behavioral context beyond annotations by stating the response contains the full history as 'the source of truth for recordings' and explicitly disclosing the absence of title and settings.

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 compact and front-loaded: the core action and resource appear in the first clause, followed by a single valuable caveat about missing fields. There is no wasted wording, and every sentence earns its place.

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?

Given that the tool has only one parameter, a well-described input schema, read-only annotations, an output schema, and no nested objects, the description provides all necessary context. It explains the response's scope and explicitly points to list_habits for missing metadata, making it complete for correct invocation.

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 schema covers 100% of the single parameter with the description 'Habit ID (from list_habits),' which is already clear. The tool description mentions 'habitId' but does not add format, source, or usage details beyond what the schema provides, 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.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the verb 'Get' and the specific resource: the server's tracking record for a single habit, including 'habitId + full history.' It also distinguishes itself from list_habits by noting exactly what the response omits, making the tool's purpose immediately clear to an agent.

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 useful context about when to use this tool versus list_habits, noting that title and settings are not included in this response and 'those are in list_habits.' It gives a clear sense of the available alternatives, though it does not explicitly state 'use this when you need full history' or list exclusion cases.

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