Skip to main content
Glama
fauguste

boondmanager-mcp-server

Creer un paiement

boond_payments_create

Record a supplier payment against an existing purchase to settle it partially or fully. Requires a valid purchase ID; each call creates a new payment.

Instructions

Enregistre un paiement / règlement fournisseur adossé à un achat.

Quand : pour solder tout ou partie d'un achat existant. Plutôt que : boond_purchases_create si l'achat lui-même n'existe pas encore — un paiement ne peut pas être orphelin.

  • L'API /payments exige une relation purchase : sans ID d'achat valide, l'appel est refusé.

  • Écriture non idempotente : deux appels identiques enregistrent deux règlements.

Returns : confirmation et fiche du paiement créé.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoNote interne, mappee vers informationComments
stateNoEtat du paiement / achat
amountNoMontant HT du paiement, mappe vers amountExcludingTax
endDateNoDate de fin couverte (YYYY-MM-DD)
taxRatesNoTaux de taxes Boond
referenceNoReference bancaire ou reglement
startDateNoDate de debut couverte (YYYY-MM-DD)
purchaseIdYesID de l'achat regle
paymentDateNoDate du paiement (YYYY-MM-DD), mappee vers date
expectedDateNoDate de paiement attendu (YYYY-MM-DD)
paymentMethodNoMethode de paiement
performedDateNoDate de paiement effectif (YYYY-MM-DD)
amountExcludingTaxNoMontant HT du paiement

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv2.12.2
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
  2. Addedv2.8.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already indicate non-idempotent, non-readOnly, destructive=false. The description adds critical behavioral details: the API requires a `purchase` relation (without it, call is refused) and that writes are not idempotent (two identical calls create two payments). This goes beyond annotations by explaining the side effects and constraints. It could mention more about potential side effects but is sufficient.

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 concise and well-structured, with a clear intro, a 'Quand' section, a 'Plutôt que' section, bullet points for API requirements and idempotency, and a brief note on returns. Each sentence adds value, no redundancy. It's efficiently front-loaded with the purpose and immediately covers usage guidance.

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

Completeness4/5

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

Given the tool complexity (13 params, 1 required) and that there is no output schema, the description provides essential context: the necessity of `purchaseId`, non-idempotency, and a brief return mention. It doesn't detail all parameter behaviors (e.g., required fields for amount), but the schema covers those descriptions. The description is adequate for an experienced agent, though a note about minimum required fields could improve it.

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

Parameters4/5

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

Schema description coverage is 100%, so baseline is 3. The description adds extra context: it explains that `amount` maps to `amountExcludingTax`, `paymentDate` maps to `date`, and `note` maps to `informationComments`. It also highlights the critical requirement for `purchaseId` to link to an existing purchase, which is vital for correct use. This goes beyond the schema by clarifying mapping and the mandatory relationship.

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 ('Enregistre') and resource ('un paiement / règlement fournisseur adossé à un achat'), which is clear. It distinguishes itself from sibling `boond_purchases_create` by explicitly noting it is for payments attached to existing purchases, not for creating purchases themselves. However, it doesn't explicitly compare to `boond_payments_search` or `boond_payments_get`, but the primary purpose is unambiguous.

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' (when to use) and 'Plutôt que' (instead of) guidance, naming the alternative `boond_purchases_create` and the condition for choosing it. This helps the agent select the correct tool. It also clearly states that a payment cannot be orphaned, preventing misuse.

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