Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Supprimer un bon de commande

boond_orders_delete
Destructive

Permanently delete a purchase order from BoondManager after verifying its ID. Use only on explicit user request; check user rights first to avoid errors.

Instructions

Supprime définitivement un(e) bon de commande de BoondManager.

Quand : uniquement sur demande explicite de l'utilisateur, et après avoir vérifié l'ID avec boond_orders_get. Plutôt que : boond_orders_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. Changed2 schema fields changedv2.12.2
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
    • removedOutput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
  2. Changed4 schema fields changedv2.7.0
    • changedInput schema / properties / id / description
      Previous value: -"Identifiant unique de l'entité BoondManager"New value: +"Identifiant unique de l'entité BoondManager (numérique)"
    • removedInput schema / properties / id / minLength
      Removed value: -1
    • addedInput schema / properties / id / pattern
      Added value: +"^\\d+$"
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "deleted": {
      +      "type": "boolean"
      +    },
      +    "id": {
      +      "type": "string"
      +    },
      +    "reason": {
      +      "description": "Présent quand la suppression n'a pas eu lieu (ex: refus utilisateur)",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "id",
      +    "deleted"
      +  ],
      +  "type": "object"
      +}
  3. First observedv2.1.0

TDQS

A4.6/5.0
Behavior5/5

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

Beyond the annotations (destructiveHint=true), the description discloses irreversibility ('Irréversible, sans corbeille côté API'), the elicitation-dependent confirmation behavior with a defined refusal outcome (deleted: false + reason), and the direct-deletion path when elicitation is unsupported. Annotations and description are consistent, so no contradiction.

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?

The description is front-loaded with the core deletion statement, then uses clear structural markers ('Quand:', 'Plutôt que:', bullets, 'Returns:') so each section is scannable. Every sentence earns its place — rights check, irreversibility, confirmation behavior, and return-field warning all add distinct value. Slightly dense but well-organized.

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 destructive mutation tool, the description is remarkably complete: it covers prerequisites (ID verification, rights check), alternatives, irreversibility, client-capability-dependent confirmation flow, and return-value semantics (check deleted for false on refusal). Combined with a single fully-documented parameter and an output schema, nothing an agent needs to invoke 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 coverage is 100% — the single id parameter is fully documented in the schema with its type, pattern, and meaning. The description adds no new parameter-level semantics beyond advising ID verification via boond_orders_get, which is a usage hint rather than parameter documentation. Baseline 3 is appropriate.

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: 'Supprime définitivement un(e) bon de commande de BoondManager' — a permanent deletion of a purchase order. It further distinguishes itself from boond_orders_update, which deactivates/changes state without destroying, so an agent can tell exactly which sibling to pick.

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?

Explicit when-to-use guidance: 'uniquement sur demande explicite de l'utilisateur, et après avoir vérifié l'ID avec boond_orders_get'. It names the alternative (boond_orders_update) and states why it is almost always the real intent, and points to boond_rights_get as a pre-flight rights check to avoid a 403. This is exemplary 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