Start task
reclaim_start_taskStart time-tracking on a task now. Reclaim REST: POST /api/planner/start/task/{id}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The task id to start. |
reclaim_start_taskStart time-tracking on a task now. Reclaim REST: POST /api/planner/start/task/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The task id to start. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already signal destructiveness (destructiveHint: true). The description adds the specific side effect of starting time-tracking and the underlying HTTP POST call. However, it does not disclose what happens if the task is already running, error behavior, or other side effects, which would enrich transparency beyond the annotations.
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 consists of two short sentences, leading with the primary action and including a precise REST endpoint. There is no redundant or extraneous content, making it highly efficient.
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, single-parameter mutation tool with annotations and full schema coverage, the description is complete enough. It does not explain return values, but the absence of an output schema and the straightforward nature of the operation reduce the need. The sibling tools provide additional context for the workflow.
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 single parameter 'id' is fully described in the input schema (100% coverage). The description adds no additional parameter semantics, so the baseline score of 3 applies as the schema already carries the burden.
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 action: 'Start time-tracking on a task now', which is a specific verb ('start') + resource ('task'). It also includes the REST endpoint, making it unambiguous and distinct from sibling tools like reclaim_stop_task or reclaim_mark_task_complete.
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 implies usage—when you want to begin tracking time on a task—but provides no explicit guidance on when to use this tool versus alternatives. It does not mention the counterpart 'stop_task' or any exclusions, leaving usage to be inferred from context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.