Skip to main content
Glama
fauguste

boondmanager-mcp-server

Consultants disponibles pour un staffing

boond_workflow_staffing_disponible
Read-onlyIdempotent

Generate a staffing runbook listing internal resources available for a date window, filtered by skills and manager scope. Sorted by earliest availability, it identifies priority profiles to activate.

Instructions

Identifie les ressources internes disponibles pour un staffing sur une fenêtre donnée, avec filtres optionnels par compétences (texte libre) et périmètre. Trie par date de disponibilité croissante et propose les profils prioritaires à activer.

Quand : pour dérouler ce scénario multi-étapes sans avoir à retrouver soi-même le bon enchaînement d'outils et les bons noms de filtres. Plutôt que : le prompt MCP staffing_disponible si le client l'expose — contenu identique, sans consommer un appel d'outil. Cette variante existe pour les clients qui traitent mal prompts/get (claude.ai notamment).

  • N'appelle aucune API BoondManager et ne lit aucune donnée : la réponse est générée côté serveur MCP.

Returns : un runbook en texte — la liste ordonnée des appels Boond à effectuer, avec les filtres exacts. C'est ensuite au modèle de les exécuter ; rien n'est fait par cet appel.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
end_dateYesFin de fenêtre de staffing (YYYY-MM-DD).
manager_idNoManager pour restreindre à son équipe. Accepte soit l'ID numérique, soit « Prénom Nom » (le serveur résoudra automatiquement via `boond_resources_search`). Si absent, scope = mon équipe via `perimeterDynamic: ['managers']`.
start_dateYesDébut de fenêtre de staffing (YYYY-MM-DD).
competencesNoCompétences recherchées en texte libre (ex: 'Java Spring AWS'). Le modèle les mappera vers `tools` via le dictionnaire.

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.4/5.0
Behavior5/5

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

Beyond the readOnly/idempotent/destructive annotations, the description discloses a critical behavioral trait: it calls no BoondManager API and reads no data, with the response generated server-side. It also states that nothing is executed by the call and that the model must run the returned runbook, which is essential for an agent to predict side effects and next steps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well organized with labeled sections ('Quand', 'Plutôt que', the bullet, and 'Returns'), and the core function is near the front. It is slightly longer than necessary and repeats the no-side-effect point, and the opening 'Identifie' claim is less precise than the later 'Returns a runbook' statement. Still, every section earns its place.

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?

With no output schema, the description clearly defines the return as a text runbook listing ordered Boond calls with exact filters, and states that the model must execute them. It also covers the no-data/no-API behavior and the conditions that trigger use of this variant. An agent has enough information to call this tool correctly.

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 baseline applies. The description mentions optional filters by competences and perimeter and notes free-text competences, but it does not add detail beyond the schema's own parameter descriptions. The manager_id resolution and default scope are already documented in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a concrete action ('Identifie les ressources internes disponibles pour un staffing'), names the window and optional filters, and mentions sorting and priority profiles. It also distinguishes this tool from the equivalent MCP prompt. However, the first sentence is slightly misleading because the tool actually returns a runbook of calls to make rather than directly identifying resources; the 'Returns' paragraph corrects this, but only later.

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' paragraph explicitly states when to use the tool: to run a multi-step staffing scenario without manually chaining tools and filter names. The 'Plutôt que' paragraph names the alternative MCP prompt `staffing_disponible` and gives the precise condition for choosing this variant, namely clients that handle `prompts/get` poorly. This is explicit, actionable usage 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