Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Modifier un positionnement

boond_positionings_update
Idempotent

Update an existing positioning in BoondManager by providing its ID and the fields to change, such as state, dates, or reason. Use to advance a positioning's status from proposed to retained or refused.

Instructions

Met à jour un positionnement existant dans BoondManager (PUT /positionings/{id}). Seuls les champs fournis sont modifiés ; stateReasonTypeOf / stateReasonDetail sont repliés en stateReason: { typeOf, detail }.

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.

Returns: Données mises à jour du positionnement.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID du positionnement à modifier
stateNoÉtat du positionnement : ID numérique de `boond://dictionary/states/positionings`
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. Changed4 schema fields changedv2.17.0
    • removedInput schema / properties / id / minLength
      Removed value: -1
    • addedInput schema / properties / id / pattern
      Added value: +"^\\d+$"
    • changedInput schema / properties / state / description
      Previous value: -"État du positionnement : ID numérique du dictionnaire setting.state.positioning"New value: +"État du positionnement : ID numérique de `boond://dictionary/states/positionings`"
    • changedInput schema / properties / state / minimum
      Previous value: -0New value: +-9007199254740991
  2. 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#"
  3. Addedv2.7.0

TDQS

A4.5/5.0
Behavior4/5

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

Beyond the annotations (readOnlyHint=false, idempotentHint=true), the description adds valuable behavioral details: partial-update semantics ('Seuls les champs fournis sont modifiés') and the flattening of stateReasonTypeOf/stateReasonDetail into a nested stateReason object. It doesn't contradict the annotations and meaningfully expands on what the structured data alone would convey.

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 four sentences, each earning its place: main action, partial-update behavior, when/alternative usage, and return value. While it's slightly more verbose than strictly necessary, the structure is front-loaded and scannable, with no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 7-parameter update tool with an output schema and annotations, the description covers the endpoint, when to use it, the alternative, the partial-update behavior, and the return value. It doesn't mention error conditions or idempotency implications, but these are secondary given the schema and annotations already present.

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?

With 100% schema description coverage, the baseline is 3. The description adds cross-parameter semantics by explicitly explaining how stateReasonTypeOf and stateReasonDetail combine into a single nested stateReason object, and it reinforces that only provided fields are modified, which clarifies how optional parameters behave in an update context.

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 positionnement existant') and includes the exact endpoint, making the tool's purpose unambiguous. It further distinguishes itself from the sibling boond_positionings_create by explicitly naming the alternative, so an agent can tell them apart without inspecting schemas.

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 clear 'Quand' conditions (advancing a positioning's state through proposed → retained → refused) and explicit 'Plutôt que' guidance to use boond_positionings_create when the positioning doesn't exist yet. This gives both when-to-use and when-not-to-use instructions, which is ideal.

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