Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Modifier un(e) paiement

boond_payments_update
Idempotent

Partially update an existing payment by ID. Send only the fields to change; returns confirmation and the updated record.

Instructions

Met à jour un(e) paiement existant(e), identifié(e) par son ID.

Quand : pour modifier quelques champs d'un enregistrement déjà en base. Plutôt que : boond_payments_create si l'enregistrement n'existe pas encore.

  • Mise à jour partielle : seuls les champs fournis sont écrits, les autres sont laissés en place.

  • Attention aux champs de type tableau, qui sont remplacés et non fusionnés.

  • boond_rights_get dit si l'utilisateur a ce droit sur l'enregistrement avant d'essayer (un 403 évité).

Returns : confirmation et fiche mise à jour.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID du paiement à modifier
noteNoNote interne, mappée vers informationComments
stateNoÉtat du paiement : ID de `boond://dictionary/states/payments`
amountNoMontant HT, mappé vers amountExcludingTax
endDateNoDate de fin couverte (YYYY-MM-DD)
taxRatesNoTaux de taxes Boond
referenceNoRéférence bancaire ou règlement (`number`)
startDateNoDate de début couverte (YYYY-MM-DD)
paymentDateNoDate du paiement (YYYY-MM-DD), mappée vers date
expectedDateNoDate de paiement attendu (YYYY-MM-DD)
paymentMethodNoMode de paiement : ID de `boond://dictionary/paymentMethods`
performedDateNoDate de paiement effectif (YYYY-MM-DD) — régulariser un règlement
amountExcludingTaxNoMontant HT
amountIncludingTaxNoMontant TTC

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoIdentifiant de l'entité créée/modifiée
typeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.17.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already indicate a non-read-only, non-destructive, idempotent mutation. The description adds meaningful behavior beyond that: partial update semantics (only provided fields written), array fields are replaced not merged, and the suggestion to pre-check rights via 'boond_rights_get'. It does not contradict any annotation and provides useful operational context.

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 tight and well-structured, with a clear opening, a 'Quand'/'Plutôt que' pair, and bullet points for key behaviors. Every sentence serves a purpose, and the most important information (update an existing payment) is front-loaded. No redundant content.

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 tool with 14 parameters, output schema, and annotations, the description covers the essential operational aspects: when to use, partial update behavior, array handling, permission pre-check, and return value. It is sufficient for an agent to call this tool correctly without additional context.

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 already provides 100% coverage with per-parameter descriptions, so the baseline is 3. The description adds general semantics about partial updates and array replacement, but does not deepen understanding of any specific parameter beyond what the schema states. No extra parameter-specific meaning is added.

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 opens with a specific verb and resource: 'Met à jour un(e) paiement existant(e)' (updates an existing payment), and clearly distinguishes itself from the create tool by stating when to use each. The purpose is unambiguous and leaves no doubt about what the tool does.

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?

It explicitly states when to use this tool ('pour modifier quelques champs d'un enregistrement déjà en base') and contrasts it with the alternative 'boond_payments_create' when the record doesn't exist. It also recommends checking 'boond_rights_get' to avoid 403 errors, giving the agent actionable routing guidance.

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