complete_todo
Mark a Basecamp 2 todo as completed using its project ID and todo ID.
Instructions
Mark a todo as completed
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| todo_id | Yes | The todo ID | |
| project_id | Yes | The project ID |
Mark a Basecamp 2 todo as completed using its project ID and todo ID.
Mark a todo as completed
| Name | Required | Description | Default |
|---|---|---|---|
| todo_id | Yes | The todo ID | |
| project_id | Yes | The project ID |
Changes observed during successful MCP inspections.
v1.0.4Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. 'Mark as completed' implies a mutation, but it doesn't disclose permissions required, whether the change is reversible, what happens to related data, or any side effects. This is a significant gap for a mutation tool.
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?
A single, efficient sentence with no wasted words. The action is front-loaded and clear.
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 mutation tool with no annotations, no output schema, and minimal description, this is incomplete. It should at least mention side effects, required permissions, or interaction with other tools.
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?
Schema description coverage is 100%, so the schema already documents both parameters (todo_id and project_id). The description adds no additional meaning beyond the operation itself. Baseline 3 is appropriate when the schema does the heavy lifting.
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?
States a clear verb (complete) and resource (todo), making the action distinct from siblings like create_todo, update_todo, and delete_todo. However, it doesn't specify scope or differentiation beyond the obvious verb difference.
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?
No guidance on when to use this tool versus update_todo or other status-changing alternatives. It doesn't explain prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.