List habits
reclaim_list_habitsList the authenticated user's daily habits. Reclaim REST: GET /api/assist/habits/daily.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
reclaim_list_habitsList the authenticated user's daily habits. Reclaim REST: GET /api/assist/habits/daily.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations declare readOnlyHint=true, and the description adds the specific GET endpoint and the scope ('authenticated user's daily habits'). It does not contradict the annotations and provides context beyond them, though it lacks details on response format or pagination.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence plus a REST reference, with no wasted words. It is front-loaded with the action and resource.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, parameterless list tool with a read-only annotation, the description is sufficient: it states the action, scope, and exact REST endpoint. It does not explain the return format, but no output schema is provided, so this is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has no parameters, so the schema fully covers them. The description adds no param-specific information, but none is needed; baseline 4 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists the authenticated user's daily habits, using a specific verb ('List') and resource ('habits'), and includes the REST endpoint. This distinguishes it from sibling tools like list_events and list_tasks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives such as reclaim_get_habit for a single habit. There is no mention of use cases or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.