Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Supprimer une facture fournisseur

boond_provider_invoices_delete
Destructive

Permanently delete a provider invoice from BoondManager after verifying its ID. Use only when the user explicitly requests deletion; otherwise, update the invoice status instead.

Instructions

Supprime définitivement un(e) facture fournisseur de BoondManager.

Quand : uniquement sur demande explicite de l'utilisateur, et après avoir vérifié l'ID avec boond_provider_invoices_get. Plutôt que : boond_provider_invoices_update pour désactiver ou changer l'état d'un enregistrement sans le détruire — c'est presque toujours l'intention réelle.

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

  • ⚠️ Irréversible, sans corbeille côté API.

  • Si le client MCP annonce la capacité elicitation, une confirmation est demandée à l'utilisateur final et un refus annule l'appel (structuredContent.deleted: false + reason) ; sinon la suppression part directement.

Returns : { id, deleted, reason? } — vérifier deleted, qui vaut false en cas de refus utilisateur.

Input Schema

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

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
reasonNoPrésent quand la suppression n'a pas eu lieu (ex: refus utilisateur)
deletedYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.17.0

TDQS

A4.7/5.0
Behavior5/5

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

Goes well beyond annotations: states irreversibility, no recycle bin, conditional confirmation behavior based on elicitation capability, and return semantics with deleted:false on refusal. DestructiveHint=true annotations are reinforced with concrete consequences.

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?

Every sentence earns its place: purpose, trigger conditions, alternative, prerequisite check, danger warning, confirmation behavior, and return format. The bulleted structure makes the key safety points scannable without padding.

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 delete tool, the description covers all necessary context: when to call, what to check before, what the consequences are, how the confirmation flow works, and what the response contains. Nothing an agent needs to invoke it safely is missing.

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 the id parameter 100% with type, pattern and description. The description adds the procedural note to verify the ID with a get call, but that's usage guidance rather than parameter semantics. Baseline 3 is appropriate since schema already fully documents the parameter.

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 'Supprime définitivement un(e) facture fournisseur de BoondManager', which is a specific verb+resource+scope. It clearly distinguishes the tool from the update sibling by explicitly naming boond_provider_invoices_update as the alternative for non-destructive state changes.

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 when-to-use guidance: only on explicit user request and after verifying the ID with boond_provider_invoices_get. It also names the preferred alternative (update) with rationale, and references boond_rights_get for authorization checks. This fully routes the agent.

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