Skip to main content
Glama
inakirealise

BoondManager MCP Server

by inakirealise

boond_purchases_create

Create a purchase record in BoondManager by specifying company, total, and order date.

Instructions

Create a new purchase

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalYes
statusNo
companyIdYes
orderedAtYes
receivedAtNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

D1.5/5.0
Behavior1/5

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

No annotations are provided, so the description must carry the full behavioral disclosure burden. It only says 'create', which is already implied by the tool name, and does not mention side effects, required authentication, default status values, idempotency, or any post-creation behavior. This is effectively a tautology rather than a behavioral explanation.

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

Conciseness2/5

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

The description is only four words, which is under-specification rather than true conciseness. While it is front-loaded and free of fluff, it contributes no useful information beyond the tool name, so the sentence does not earn its place.

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

Completeness1/5

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

Given five parameters, three required fields, an enum, no output schema, and no annotations, the description is severely incomplete. An agent cannot construct a valid purchase request, understand the purchase lifecycle, or know what the operation returns following creation. This is far below the minimum viable tool definition.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description adds no parameter information. It does not explain the meaning of companyId, total, orderedAt, status, or receivedAt beyond their raw schema types and constraints. The agent is left to guess the domain semantics of these fields with no compensating guidance.

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

Purpose2/5

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

The description 'Create a new purchase' is essentially a restatement of the tool name boond_purchases_create. It identifies the verb and resource but does not distinguish it from sibling tools like boond_orders_create or boond_purchases_update, nor does it explain what a purchase is in this domain.

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 about when to use this tool versus boond_purchases_update, boond_orders_create, or the various other create tools. The description gives no context, prerequisites, or alternative routing, leaving the agent without any situational information.

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