Skip to main content
Glama
inakirealise

BoondManager MCP Server

by inakirealise

boond_orders_create

Create a new order in BoondManager by specifying company ID and total amount. Optionally add status and project ID to complete the record.

Instructions

Create a new order

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalYes
statusNo
companyIdYes
projectIdNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of disclosing behavioral traits. It only states the obvious creation action and does not mention return values, validation behavior, side effects, permissions, or what happens on failure. The description adds minimal information beyond the schema.

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

Conciseness3/5

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

The description is extremely short with no wasted words, but it is under-specified rather than appropriately concise. It front-loads the core purpose but omits essential operational details that could fit in a similar sentence count.

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 operation with no annotations)Skip output schema and 4 parameters, the description is incomplete. There is no mention of what the created order represents, whether any side effects occur, or what the caller should expect. An agent can invoke it with required schema fields but lacks broader context for confident use.

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 provides no information about any of the four parameters. The description does not mention required companyId or total, nor the optional status/projectId, so an agent must rely entirely on the raw schema without any contextual hints.

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 clear verb and resource: 'Create a new order'. It is unambiguous about the general operation and distinguishes itself from read/search tools, but it does not differentiate itself from sibling creation tools or mention order-specific characteristics.

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 alternatives such as boond_orders_update or boond_orders_search. The intended usage context is only implied by the tool name and the word 'create'.

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