Skip to main content
Glama
fauguste

boondmanager-mcp-server

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

boond_resources_reference_update
Idempotent

Partially update an existing reference on a BoondManager resource. Modify only the fields you provide, such as dates, while preserving the job title, company, and description.

Instructions

Met à jour une référence existante. Read-modify-write sur /resources/{id}/technical-data — seuls les champs explicitement fournis remplacent ceux de la référence ciblée, les autres champs et toutes les autres références restent intacts.

Quand : pour corriger une expérience professionnelle existante. Plutôt que : boond_resources_reference_create pour en ajouter une nouvelle.

Cas d'usage type : compléter startMonth/startYear/endMonth/endYear sur une référence sans toucher au titre, à la société ou à la description.

Returns : confirmation et dossier technique republié. Un referenceId introuvable renvoie isError: true avec la liste des ID présents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNoIntitulé du poste.
skillsNoCompétences mobilisées.
companyNoSociété / employeur.
endYearNoAnnée (ex: 2024). Accepte int ou string '2024'.
endMonthNoMois (1-12). Accepte int ou string ('5'). ⚠️ '05' avec leading zero est rejeté par l'API Boond.
locationNoLieu (ville).
startYearNoAnnée (ex: 2024). Accepte int ou string '2024'.
resourceIdYesID de la ressource portant la référence (les references sont embarquées dans le DT).
startMonthNoMois (1-12). Accepte int ou string ('5'). ⚠️ '05' avec leading zero est rejeté par l'API Boond.
descriptionNoDescription / missions / réalisations.
referenceIdYesID de la référence à modifier.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv2.12.2
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
  2. First observedv2.1.0

TDQS

A4.9/5.0
Behavior5/5

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

Discloses merge semantics (only provided fields replace, other fields and references stay intact), return behavior (confirmation and republished technical dossier), and error behavior for an unknown referenceId. This adds meaningful context beyond the annotations, which only indicate readOnly=false, idempotent=true, and destructive=false.

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?

Four short sections with no filler: the most important merge semantics come first, followed by usage, example, and return/error behavior. Every sentence contributes to correct tool invocation.

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 an 11-parameter update endpoint with no output schema, the description covers selection, partial-update behavior, side effects, and error signaling. No important calling decision is left unaddressed.

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 coverage is 100%, so each parameter is already documented. The description adds value beyond the schema by explaining partial-update semantics and illustrating a realistic subset of fields (startMonth/startYear/endMonth/endYear) that can be updated without touching others.

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?

States clearly that it updates an existing reference via read-modify-write on /resources/{id}/technical-data, and differentiates itself from boond_resources_reference_create. The verb, target resource, and merge behavior are all explicit.

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?

Gives an explicit 'Quand' and 'Plutôt que' section naming boond_resources_reference_create as the alternative, plus a concrete use case for partial date updates. An agent can confidently decide when to use this tool versus its siblings.

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