Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Factures d'un bon de commande

boond_orders_invoices
Read-onlyIdempotent

Retrieve invoices linked to a purchase order by ID, including totals and remaining amount to invoice, to prepare billing.

Instructions

Récupère les factures émises (référence, période, état, montants HT/TTC) d'un(e) bon de commande, par son ID.

Quand : pour ne charger que cette section, sans le reste de la fiche. Plutôt que : boond_orders_get pour la fiche de base, ou boond_orders_search si l'ID est inconnu.

  • C'est l'entrée de la préparation de facturation : deltaInvoicedExcludingTax > 0 signifie qu'il reste à facturer sur la commande.

Returns : Liste des factures rattachées au bon de commande, précédée des totaux calculés par BoondManager : commandé HT, facturé HT/TTC, reste à facturer (deltaInvoicedExcludingTax) et répartition par état. Lecture seule.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesIdentifiant unique de l'entité BoondManager (numérique)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.17.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false; the description adds no contradiction and reinforces read-only. It adds useful behavior: the response is a list preceded by computed totals, and explains the deltaInvoicedExcludingTax > 0 meaning. No pagination or error details, but the safety profile is covered by annotations.

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?

Well-structured with front-loaded purpose, then Quand/Plutôt que, a delta note, and Returns. Only minor redundancy is 'Lecture seule', which duplicates the readOnlyHint annotation.

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

Completeness5/5

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

For a single-parameter read-only tool with no output schema, the description is complete: it states what is returned, the totals included, and the delta semantics. It also provides routing guidance. No critical missing information for invocation.

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 covers 100% of the single parameter with type, pattern, and description. The description only repeats 'par son ID' and doesn't add format or source details beyond the schema, so baseline 3 applies.

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?

States a specific verb ('Récupère'), resource ('factures ... d'un bon de commande'), identifier ('par son ID'), and key fields. It explicitly distinguishes itself from boond_orders_get and boond_orders_search, so an agent can select it correctly.

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

Usage Guidelines5/5

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

Provides explicit 'Quand' (load only this section without the rest of the record) and 'Plutôt que' alternatives: boond_orders_get for the base record, boond_orders_search when the ID is unknown. Also orients the agent to invoicing preparation with deltaInvoicedExcludingTax.

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