Skip to main content
Glama
thedistance

Basecamp 2 MCP

by thedistance

update_todo

Modify an existing todo item's due date, content, or assignee in Basecamp 2 by specifying the project and todo IDs.

Instructions

Update an existing todo item

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
due_onNoNew due date in YYYY-MM-DD format
contentNoNew text content
todo_idYesThe todo ID
project_idYesThe project ID
assignee_idNoNew assignee person ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

C2.4/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full behavioral burden. It says only 'Update an existing todo item,' omitting whether updates are partial or full, which permissions are required, whether omitted fields are preserved, or what is returned. For a mutation tool with no annotations, this is effectively no behavioral disclosure.

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

Conciseness2/5

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

The single sentence is front-loaded and free of filler, but for a five-parameter mutation tool with no annotations the extreme brevity is under-specification rather than conciseness. It does not provide enough information to be appropriately sized.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema and no annotations, and the description does not explain partial-update semantics or return behavior. Although the input schema documents parameters, the definition leaves key operational context missing for an update operation.

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?

Schema description coverage is 100%, with each of the five parameters documented in the input schema. The description adds no parameter-level meaning, but the baseline score of 3 applies because the schema already carries the semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

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

States a specific verb (update) and resource (todo item) and notes the item must already exist. However, it does not differentiate from siblings like complete_todo, delete_todo, or create_todo, so an agent cannot tell from the description alone when to choose this tool over those alternatives.

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

Usage Guidelines2/5

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

No when-to-use guidance, no named alternatives, and no exclusions. The description implies only that it modifies an existing todo, but does not say when to use update_todo rather than complete_todo or create_todo.

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