Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Feuilles de temps d'une ressource

boond_resources_timesheets
Read-onlyIdempotent

Retrieve a resource's timesheets for a month or year, using only the resource ID, to list time reports without needing their IDs.

Instructions

Récupère les feuilles de temps (times reports) d'une ressource par son ID, avec filtre optionnel par mois/année (défaut : mois courant).

Quand : pour lister les CRA d'une ressource sur un mois donné, sans connaître leurs ID. Plutôt que : boond_timesheets_get pour le détail d'un CRA précis, boond_timesheets_search pour couvrir plusieurs ressources d'un coup.

Returns: Liste des feuilles de temps de la ressource avec jours/heures et statut.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearNoAnnée (ex: 2025). Si omis, année courante.
monthNoMois (1-12). Si omis, mois courant.
resourceIdYesID de la ressource

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv2.17.0
    • removedInput schema / properties / resourceId / minLength
      Removed value: -1
    • addedInput schema / properties / resourceId / pattern
      Added value: +"^\\d+$"
  2. Changed1 schema field changedv2.12.2
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
  3. First observedv2.1.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already cover the safety profile (readOnlyHint=true, idempotentHint=true, destructiveHint=false), lowering the bar for the description. The description adds useful behavioral context beyond those annotations: the default month/year behavior ('défaut : mois courant') and the return content ('Liste des feuilles de temps ... avec jours/heures et statut'). This exceeds what the annotations provide, although it does not mention pagination or error handling, which are minor for a read-only list operation.

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 front-loaded: the first sentence states the core action and the optional filter; the second sentence provides when-to-use guidance with explicit alternatives; the third sentence describes the return value. Every sentence contributes distinct information, with no redundancy or filler.

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 a tool with 3 parameters, one required, no output schema, and read-only semantics, the description is complete. It covers the purpose, the exact use case, how it differs from analogous tools, the default behavior, and the shape of the returned data. Nothing an agent needs to invoke this 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 description coverage is 100%: all three parameters (resourceId, year, month) have descriptive entries in the schema, including the default behavior for omitted month/year. The description repeats the defaults but does not add any additional semantics beyond the schema. Per the calibration baseline, when schema coverage is high and the description adds no new parameter meaning, a score of 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 states a specific verb ('Récupère'), a resource ('feuilles de temps d'une ressource'), and the input ('par son ID'), with optional month/year filter. It also explicitly names the sibling alternatives it is not (boond_timesheets_get, boond_timesheets_search), allowing an agent to select this tool without opening schemas. This is a clear, differentiated purpose.

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 ('pour lister les CRA d'une ressource sur un mois donné, sans connaître leurs ID') and when to prefer alternatives ('Plutôt que : ... boond_timesheets_get ... boond_timesheets_search ...'). It leaves no ambiguity about the conditions that select 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