Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Préparer un entretien candidat

boond_workflow_preparation_entretien
Read-onlyIdempotent

Prepare candidate interviews by consolidating BoondManager data and comparing profile to opportunity requirements, generating a runbook of exact search calls to execute.

Instructions

Rassemble en une fiche tout ce que BoondManager sait d'un candidat (parcours, compétences, CV, positionnements, historique des échanges) et, si une opportunité est visée, confronte le profil au besoin pour lister les points à creuser.

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 preparation_entretien 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
candidate_idYesCandidat reçu en entretien. Accepte soit l'ID numérique, soit « Prénom Nom » du candidat (résolution auto via `boond_candidates_search`).
opportunity_idNoOpportunité visée, pour comparer profil et besoin. Accepte soit l'ID numérique, soit l'intitulé de l'opportunité (résolution auto via `boond_opportunities_search`).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.17.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 explicitly states 'N'appelle aucune API BoondManager et ne lit aucune donnée', that the response is generated server-side, and that 'rien n'est fait par cet appel.' This fully discloses the no-side-effect, no-data-fetch behavior and sets accurate expectations that the model must execute the returned runbook afterward.

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-structured with front-loaded purpose and clear labeled sections ('Quand', 'Plutôt que', 'Returns'), making it scannable for an agent. It is somewhat redundant around the no-API/no-data-read behavior, repeated in three different phrasings, which keeps it from earning a 5.

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 workflow tool with no output schema, the description fully covers what the agent needs: when to use it, what it returns ('un runbook en texte — la liste ordonnée des appels Boond'), that nothing is executed, and how the parameters relate to the scenario. The schema already documents the parameter types and resolution behavior, so no essential choice or invocation details are 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?

The input schema already provides 100% coverage with detailed descriptions for both parameters, including auto-resolution through `boond_candidates_search` and `boond_opportunities_search`. The tool description adds little beyond reinforcing that opportunity_id is used when an opportunity is targeted, so it does not meaningfully increase parameter understanding beyond the schema baseline.

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 names the target resource (candidate, optional opportunity) and the workflow action ('Rassemble en une fiche... confronte le profil au besoin'), and it clarifies that the output is a runbook of API calls rather than executed work. It is distinguishable from sibling tools by its 'préparer entretien' focus and multi-step orchestration. However, the first sentence slightly conflicts with the later claim that the tool reads no data, since 'rassemble... tout ce que BoondManager sait' can be read as actually consolidating data rather than generating a plan.

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 has an explicit 'Quand' section explaining to use it when the agent needs a multi-step scenario without rediscovering the tool chain and filter names. It also provides a direct alternative ('Plutôt que : le prompt MCP `preparation_entretien`') with the condition of when that prompt should be preferred, including the compatibility caveat for clients that handle `prompts/get` poorly.

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