Skip to main content
Glama
envisialearning

Basecamp 2 MCP Server

update_todo

Modify an existing Basecamp 2 todo item by changing its text, due date, assignee, position, or completion status within a project.

Instructions

Update an existing todo item

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
due_atNoDue date (YYYY-MM-DD), or null to remove
contentNoNew todo text
todo_idYesThe todo ID
positionNoPosition in the list (1-based)
completedNoWhether the todo is completed
project_idYesThe project ID
assignee_idNoPerson ID to assign to, or null to unassign

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full behavioral burden, and it discloses almost nothing. It doesn't say whether this is a partial/patch update, what permissions are required, whether omitted fields are preserved, or whether the change is reversible. 'Update' at least signals a mutation, but that is the bare minimum.

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

Conciseness4/5

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

It is a single, front-loaded sentence with no wasted words. The downside is under-specification rather than verbosity, which is properly penalized in other dimensions.

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?

For a 7-parameter mutation tool with no annotations and no output schema, one sentence is insufficient. The agent learns nothing about partial-update semantics, permission requirements, or side effects, leaving gaps the schema cannot fill.

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 all seven parameters individually documented (including null semantics for due_at and assignee_id). The description adds no parameter meaning beyond the schema, so the baseline 3 applies.

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?

The description gives a clear verb ('Update') and resource ('an existing todo item'), so the purpose is unambiguous. It does not differentiate from sibling operations like create_todo or get_todo, nor does it indicate which fields are mutable, which keeps it short of a 5.

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?

There is no guidance on when to use this tool versus alternatives such as create_todo or get_todo, and no prerequisites or conditions are stated. The agent must infer usage entirely from the name and schema.

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