Skip to main content
Glama
envisialearning

Basecamp 2 MCP Server

archive_project

Archive or unarchive a Basecamp 2 project by ID. Set the archived flag to true to archive, false to unarchive.

Instructions

Archive or unarchive a Basecamp 2 project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
archivedYestrue to archive, false to unarchive
project_idYesThe project ID

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, the description carries the full behavioral burden. It implies a reversible mutation ('or unarchive'), but does not state permission requirements, side effects, or whether archiving hides the project from other listings. These gaps matter 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.

Conciseness5/5

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

A single tight sentence with zero waste, front-loading the action and the target resource.

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 mutation tool with no annotations and no output schema, the description is too thin. It should explain side effects (e.g., visibility to other users), required permissions, and whether the operation is reversible, but leaves these unaddressed.

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 both parameters are already fully documented. The description restates the archive/unarchive concept but adds no syntax or extra meaning beyond the schema.

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: 'Archive or unarchive a Basecamp 2 project.' It clearly covers both the archive and unarchive operations. However, it does not explicitly differentiate itself from any sibling tool, though no sibling overlaps this capability.

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, prerequisites, or alternative tools are mentioned. The agent must infer that this is the correct tool for changing project archival status.

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