Skip to main content
Glama
fauguste

boondmanager-mcp-server

Modifier un positionnement

boond_positionings_update
Idempotent

Update an existing positioning in BoondManager by modifying its state, dates, reason, or comments. Only supplied fields are changed, enabling you to advance a position from proposed to accepted or rejected.

Instructions

Met à jour un positionnement existant dans BoondManager (PUT /positionings/{id}). Seuls les champs fournis sont modifiés.

Quand : pour faire avancer l'état d'un positionnement (proposé → retenu → refusé). Plutôt que : boond_positionings_create si le positionnement n'existe pas encore.

Args:

  • id (string): ID du positionnement

  • state (number, optional): État du positionnement (ID du dictionnaire setting.state.positioning)

  • stateReasonTypeOf, stateReasonDetail (optional): Motif d'état (repliés en stateReason {typeOf, detail})

  • startDate, endDate (string, optional): Dates au format YYYY-MM-DD (chaîne vide pour effacer)

  • informationComments (string, optional): Commentaires (max 250 caractères)

Returns: Données mises à jour du positionnement.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID du positionnement à modifier
stateNoÉtat du positionnement : ID numérique du dictionnaire setting.state.positioning
endDateNoDate de fin (YYYY-MM-DD, ou chaîne vide pour effacer)
startDateNoDate de début (YYYY-MM-DD, ou chaîne vide pour effacer)
stateReasonDetailNoMotif d'état : détail libre (stateReason.detail)
stateReasonTypeOfNoMotif d'état : ID numérique du type de motif (stateReason.typeOf)
informationCommentsNoCommentaires (max 250 caractères)

Output Schema

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

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. Addedv2.7.0

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=false, idempotentHint=true, and destructiveHint=false. The description adds valuable behavioral context beyond annotations: it explains that only provided fields are modified ('Seuls les champs fournis sont modifiés'), that startDate/endDate can be cleared with an empty string, and that stateReasonTypeOf/stateReasonDetail are folded into a stateReason object. These details are not present in annotations and enhance understanding. No contradiction with annotations.

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 well-structured with a clear opening statement of function and endpoint, followed by explicit usage conditions ('Quand', 'Plutôt que'), and a concise argument list. Every sentence serves a purpose; nothing is fluff. The structure front-loads the key differentiator (update vs create) and minimizes redundancy.

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?

The description covers all necessary aspects: it names the HTTP method and endpoint, specifies the partial-update behavior, provides explicit usage conditions, explains how to clear date fields, groups related parameters, and states the return type ('Données mises à jour du positionnement'). Since an output schema exists, return details are not required. The description is complete for an agent to invoke the tool correctly.

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% (all 7 params have descriptions), so the baseline is 3. However, the description adds meaningful semantic clarity beyond the schema: it groups stateReasonTypeOf and stateReasonDetail to be sent as a nested stateReason object, clarifies that startDate/endDate empty strings clear the values, and specifies the max length for informationComments. This extra context helps the agent construct correct calls.

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 clearly states the tool updates an existing positioning ('Met à jour un positionnement existant') and includes the HTTP endpoint PUT /positionings/{id}. It explicitly differentiates from the sibling `boond_positionings_create` by saying 'Plutôt que : boond_positionings_create si le positionnement n'existe pas encore', which enables correct sibling selection.

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 description provides an explicit 'Quand' condition ('pour faire avancer l'état d'un positionnement (proposé → retenu → refusé)') and an explicit 'Plutôt que' alternative ('boond_positionings_create si le positionnement n'existe pas encore'). This gives clear when and when-not guidance, fully meeting the usage criteria.

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