Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Supprimer une référence (expérience pro)

boond_resources_reference_delete
Destructive

Delete a professional experience reference from a resource's technical file by reading, removing the targeted ID, and republishing the rest. Irreversible; verify the reference ID first.

Instructions

Supprime une référence (expérience professionnelle) du DT d'une ressource. Read-modify-write : lit la liste actuelle, en retire la référence ciblée, republie le reste. ⚠️ Action irréversible — vérifier l'ID au préalable.

Quand : pour retirer une expérience saisie par erreur, sur demande explicite de l'utilisateur. Plutôt que : boond_resources_reference_update pour corriger une référence plutôt que la détruire.

Returns : confirmation et nombre de références restantes. Un referenceId introuvable renvoie isError: true avec la liste des ID présents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
resourceIdYesID de la ressource portant la référence (les references sont embarquées dans le DT).
referenceIdYesID de la référence à supprimer.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changedv2.17.0
    • removedInput schema / properties / referenceId / minLength
      Removed value: -1
    • addedInput schema / properties / referenceId / pattern
      Added value: +"^\\d+$"
    • removedInput schema / properties / resourceId / minLength
      Removed value: -1
    • addedInput schema / properties / resourceId / pattern
      Added value: +"^\\d+$"
  2. Changed1 schema field changedv2.12.2
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
  3. First observedv2.1.0

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the annotations' destructiveHint=true, the description adds valuable behavioral context: the read-modify-write process, the irreversible nature of the action, the warning to verify the ID, and the exact error behavior when `referenceId` is not found (`isError: true` plus the list of present IDs). No contradiction with annotations exists.

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: core action, read-modify-write mechanism, irreversibility warning, usage guidance, alternative routing, and return/error behavior. The structure is front-loaded and contains no filler or redundant restatement of the title.

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, non-idempotent operation with no output schema, the description covers the action, scope, when to use it, the alternative, irreversibility, and both success and failure return signals. Nothing an agent needs to decide whether and how to call this tool correctly 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 description coverage is 100%, with both `resourceId` and `referenceId` already well documented. The description reinforces the need to verify the ID but does not materially expand parameter-level meaning beyond what the schema provides, so the 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 une référence (expérience professionnelle) du DT d'une ressource.' It also explicitly differentiates from the sibling `boond_resources_reference_update` by stating that the update tool corrects a reference rather than destroying it.

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?

The 'Quand' clause gives the exact scenario: removing an experience entered by mistake or on explicit user request. It also names the alternative tool (`boond_resources_reference_update`) and the condition that selects it, leaving no ambiguity about when to use this delete operation.

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