Skip to main content
Glama
fauguste

boondmanager-mcp-server

Creer une prestation/livraison

boond_deliveries_create

Create a billable delivery line linked to a project and resource, enabling the resource to be invoiced on that project.

Instructions

Crée une prestation (livraison) rattachée à un projet et à une ressource.

Quand : pour ouvrir la ligne de mission qui rendra la ressource facturable sur ce projet. Plutôt que : boond_projects_deliveries_groupments pour lister les prestations déjà en place sur le projet.

  • project et resource sont obligatoires et attendent des ID numériques.

  • L'ID de prestation retourné est celui qu'exigent les lignes de note de frais (boond_expenses_create).

  • Écriture non idempotente.

Returns : confirmation et fiche de la prestation créée.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoNotes, mappees vers informationComments
stateNoEtat
titleNoTitre de la prestation/livraison
typeOfNoType de prestation
endDateNoDate de fin (YYYY-MM-DD)
quantityNoNombre de jours / quantite
projectIdYesID du projet
startDateNoDate de debut (YYYY-MM-DD)
unitPriceNoPrix journalier HT
resourceIdYesID de la ressource portee par la prestation
averageDailyCostNoCout journalier moyen
forceAverageDailyPriceExcludingTaxNoForcer le prix journalier HT

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

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already indicate readOnlyHint=false, idempotentHint=false, destructiveHint=false. The description adds valuable behavioral context: 'Écriture non idempotente' (non-idempotent write), which is important for an agent to know. It also states the returned ID is required by expense lines (boond_expenses_create), providing downstream context. It doesn't contradict 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 compact and well-structured: a one-line definition, a 'Quand' section for usage, a 'Plutôt que' section for alternatives, bullet points for key constraints, and a return note. Every sentence earns its place and the most important information 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 create tool with 12 parameters and no output schema, the description covers the essential context: when to use it, what it returns, non-idempotency, and the downstream consumer of the returned ID. It doesn't explain all 12 parameters, but the schema already covers those. The only minor gap is not describing the full return structure, but the description says it returns confirmation and the created prestation record.

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%, so the schema already documents all 12 parameters. The description adds that project and resource are mandatory and expect numeric IDs, which is useful but partially redundant with the schema's required list. It doesn't add much beyond the schema, so 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 clearly states the tool creates a prestation (delivery) attached to a project and resource, with a specific purpose: opening the mission line that makes the resource billable on the project. It distinguishes itself from the sibling boond_projects_deliveries_groupments by explicitly saying 'Plutôt que' (rather than) for listing existing prestations.

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 explicitly states when to use this tool ('Quand : pour ouvrir la ligne de mission qui rendra la ressource facturable sur ce projet') and provides an alternative ('Plutôt que : boond_projects_deliveries_groupments pour lister les prestations déjà en place sur le projet'). This is clear usage guidance with an explicit exclusion.

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