Skip to main content
Glama
inakirealise

BoondManager MCP Server

by inakirealise

boond_projects_get

Retrieve a project by ID from BoondManager. Returns project details such as title, status, and dates for the given project identifier.

Instructions

Get a project by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesProject ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the behavioral disclosure burden. It only states the action 'get' without mentioning the return format, error behavior, or any side effects. While 'get' implies read-only, the description adds minimal behavioral context beyond what the name already conveys.

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?

The description is a single, front-loaded sentence with no fluff. Every word is essential and it is appropriately concise for a simple retrieval operation.

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

Completeness3/5

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

For a single-parameter get operation with no output schema, the description tells the agent the core action but omits what the response will look like. It does not specify that it returns the project object, nor does it cover error cases. Given the simplicity, this is acceptable but could be slightly richer.

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?

The input schema describes the single 'id' parameter as 'Project ID', and schema coverage is 100%. The description adds no extra meaning to the parameter, so the baseline of 3 applies. It neither clarifies the format nor provides additional usage hints beyond the schema.

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

Purpose5/5

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

The description 'Get a project by ID' clearly states a specific verb (get), resource (project), and mechanism (by ID). It unambiguously distinguishes from search tools like boond_projects_search, which implies listing/filtering, and other entity get tools by naming the resource.

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

Usage Guidelines3/5

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

The usage context is implied: if you have a specific ID, you use this; otherwise you'd search. However, the description does not explicitly state when to use this over boond_projects_search or any other alternative. No exclusions or alternatives are mentioned, leaving it to the agent to infer the pattern from sibling names.

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

Deploy Server

Other Tools