Skip to main content
Glama
thedistance

Basecamp 2 MCP

by thedistance

create_todolist

Create a new todo list in a Basecamp 2 project by providing the project ID and list name, with an optional description for added context.

Instructions

Create a new todo list in a Basecamp 2 project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName of the todo list
project_idYesThe project ID
descriptionNoOptional description for the todo list

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, yet it only says a list is created. It does not disclose auth/permission needs, whether duplicate names are allowed, whether the new list is returned, or whether project_id must already exist. For a mutation tool with zero annotation coverage this is a significant gap.

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?

A single front-loaded sentence with no filler; the purpose is immediately clear. It is efficient, though its brevity is partly under-specification rather than tight editing.

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 create/mutation tool with no annotations, no output schema, and no return-value documentation, the description should explain at minimum the permission model and result. It leaves the agent without enough context to call this confidently in an ambiguous situation.

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%, so all three parameters (name, project_id, description) are already documented in the schema, including which are optional. The description adds nothing beyond that, 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?

States a specific verb (create) and resource (todo list) plus scope (in a Basecamp 2 project), which separates it from the singular create_todo sibling. It stops short of explicitly naming that sibling or clarifying list-vs-item semantics, so it is clear but not sibling-differentiating at the top level.

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 indication of when to use this versus create_todo or update_todo, no prerequisites (e.g. that project_id must reference an existing project), and no note on behavior when a list name already exists. The agent is left to infer usage entirely.

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