Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Créer un avantage

boond_advantages_create

Create an advantage record to assign a benefit (meal tickets, insurance, vehicle, bonus) to a resource. Specify type, date, quantity, and amounts, then link a contract, project, or delivery for accurate attribution.

Instructions

Attribue un avantage (tickets restaurant, mutuelle, véhicule, prime…) à une ressource.

Quand : après boond_advantages_default pour connaître les types et montants de l'agence. Plutôt que : boond_advantages_search d'abord : l'API ne déduplique pas.

  • Corps déduit de models.advantage (date, quantity, advantageType, montants, relations resource / contract / project / delivery) — non éprouvé sur un tenant de test.

  • Écriture non idempotente.

Returns : confirmation et ID de l'avantage (structuredContent.id).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYesDate de l'avantage (YYYY-MM-DD).
noteNoCommentaires (`informationComments`).
quantityNoQuantité (ex. nombre de tickets).
projectIdNoID du projet à refacturer.
contractIdNoID du contrat de rattachement.
deliveryIdNoID de la prestation.
resourceIdYesID de la ressource bénéficiaire (relation `resource`, requise).
returnDateNoDate de restitution (véhicule, matériel).
agencyAmountNoCharges / coefficient de charge côté agence.
advantageTypeYesType d'avantage : `reference` ou `<reference>_<agencyId>` tel que publié par `boond_advantages_default` (`advantageTypes`).
employeeAmountNoMontant versé au salarié.
participationAmountNoParticipation salarié.

Output Schema

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

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.17.0

TDQS

A4.4/5.0
Behavior4/5

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

The description explicitly states 'Écriture non idempotente', consistent with idempotentHint=false, and adds a useful reliability caveat: the body was inferred from models.advantage and is 'non éprouvé sur un tenant de test'. It also tells the agent the return contains a confirmation and advantage ID. It does not cover auth or errors, but annotations already cover read-only/destructive aspects.

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 compact and well-structured: purpose, when/alternative, caveats, and return value are each in short labeled blocks. There is no filler, and the most important usage constraint is front-loaded.

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 12-parameter create operation with full schema descriptions and an output schema, the description supplies the key workflow context, the deduplication warning, non-idempotence, and an implementation caveat. It does not enumerate validation or error behavior, but nothing essential for selecting and invoking the 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 coverage is 100% and every parameter already has a description in the input schema. The prose adds a high-level grouping via 'models.advantage' and mentions relationships (resource/contract/project/delivery), but it does not add new per-parameter semantics beyond the schema. 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 action and resource: 'Attribue un avantage ... à une ressource', with concrete examples (tickets restaurant, mutuelle, véhicule). It also differentiates from siblings by saying to use it after boond_advantages_default and instead of boond_advantages_search first.

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' and 'Plutôt que' sections give explicit workflow guidance: run boond_advantages_default first to know types and amounts, and do not call boond_advantages_search first because the API does not deduplicate. This is clear when-to-use and when-not-to-use 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