Skip to main content
Glama
envisialearning

Basecamp 2 MCP Server

create_comment

Post a comment on a Basecamp 2 todo or todo list to share updates, with optional file attachments and subscriber notifications.

Instructions

Create a comment on a todo or todo list

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesWhether to comment on a todo or todolist
contentYesThe comment text
project_idYesThe project ID
attachmentsNoFiles to attach, as { token, name } objects (token from upload_attachment)
resource_idYesThe ID of the todo or todolist
subscribersNoPerson IDs to notify about this comment

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 burden of behavioral disclosure. It states that it creates a comment but does not mention required permissions, whether the comment triggers notifications (subscribers parameter exists), whether it is reversible, or what the response looks like. 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.

Conciseness4/5

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

The description is a single efficient sentence with no waste. It is appropriately sized and front-loaded, though it could be slightly more informative without becoming verbose.

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?

Given the tool's complexity (6 parameters, 4 required, mutation operation, relationships with siblings like upload_attachment and list_people), the description is incomplete. It lacks usage context, behavioral details, and any information about side effects or integration with other tools.

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 the schema already documents all parameters thoroughly. The description adds no additional parameter semantics beyond what is in the schema, so baseline 3 is appropriate.

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 states a specific verb and resource ('Create a comment on a todo or todo list'), which is clear and matches the tool's function. However, it does not differentiate from sibling tools like create_todo or create_todolist, which are similarly named, so an agent might confuse which creation tool to use without opening schemas.

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?

The description offers no guidance on when to use this tool versus alternatives. It does not mention prerequisites such as needing a todo or todolist to exist, or how it relates to sibling tools like upload_attachment for attachments.

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