Skip to main content
Glama
fauguste

boondmanager-mcp-server

Créer une feuille de temps

boond_timesheets_create

Create a timesheet (CRA) for a resource and month, directly avoiding duplicate sheets that searching first cannot prevent.

Instructions

Crée la feuille de temps (CRA) d'un mois pour une ressource.

Quand : pour ouvrir le CRA d'un couple (ressource, mois) qui n'existe pas encore. Plutôt que : boond_timesheets_search d'abord : l'API ne déduplique pas, et deux CRA peuvent coexister sur le même mois.

  • term est le mois au format YYYY-MM — un CRA couvre un mois entier, pas une journée.

  • Écriture non idempotente.

Returns : confirmation et fiche du CRA créé.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoNotes
termYesMois au format YYYY-MM
stateNoÉtat de la feuille de temps
endDateNoDate de fin (YYYY-MM-DD)
projectIdNoID du projet
startDateNoDate de début (YYYY-MM-DD)
totalDaysNoTotal jours
resourceIdYesID de la ressource
totalHoursNoTotal heures

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 provide readOnlyHint=false, idempotentHint=false, destructiveHint=false. The description adds the important behavioral detail that the write is non-idempotent and that two CRAs can coexist on the same month. It also states the return value (confirmation + created CRA details), adding useful context beyond the 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 concise one-line statement of purpose, followed by clearly labeled sections ('Quand', 'Plutôt que', bullet point on 'term', idempotency note, 'Returns'). Every sentence earns its place; 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 9-parameter tool with no output schema, the description covers the essential operational guidance: when to use, what to avoid, the key parameter's format, idempotency, and return value. Some gap remains on how optional parameters (like state, startDate, endDate) relate to the monthly CRA creation, but the schema already documents these fields.

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 9 parameters. The description adds semantic clarity for 'term' (full month, daily granularity) and implicitly links 'resourceId' and 'term' as the key pair defining a CRA, but it doesn't significantly deepen the meaning of the other parameters. 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?

States a specific verb+resource (creates a monthly timesheet for a resource), defines the exact scope (one month per resource), and distinguishes it from the sibling tool by noting the API's non-deduplicating behavior. The description makes it clear this tool is for opening a new CRA for a (resource, month) pair that doesn't yet exist.

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?

Provides explicit 'Quand' (when to use) and 'Plutôt que' (rather than) guidance, warning against calling boond_timesheets_search first because the API does not deduplicate. It also clarifies that 'term' must be in YYYY-MM format and covers a full month, removing ambiguity.

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