Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Rechercher des candidats

boond_candidates_search
Read-onlyIdempotent

Search candidates in BoondManager using server-side filters for skills, locations, states, and more. Retrieve paginated results for recruitment processes.

Instructions

Recherche des candidats dans BoondManager avec filtres serveur.

Plutôt que : boond_resources_search pour les collaborateurs internes — candidats et ressources sont deux référentiels distincts, et une personne recrutée cesse d'être trouvable ici.

Cas d'usage courants : • Mes candidats sans connaître son propre ID : perimeterDynamic: ["data"]. Pour "candidats de l'équipe X" : perimeterManagers: [<X_id>] (utiliser perimeterManagersType: "main"|"hr" pour cibler Main vs HR Manager). • États / types : candidateStates: [<id>] (dictionnaire setting.state.candidate), candidateTypes (setting.typeOf.resource), contractTypes, availabilityTypes. IDs entiers issus du dictionnaire. • Profil technique : tools: [<id>] (OU; pour ET: ["#AND#", "1", "2"]), expertiseAreas, activityAreas, experiences, trainings, mobilityAreas, languages (format langueId|niveauId). • Sourcing : sources: [<id>] (origine du candidat), evaluations. • Période : period: "created"|"updated"|"available"|"withActions"|... + startDate/endDate. • Recherche par nom : keywords: "Dupont" + keywordsType: "lastName" (ou firstName, fullName avec "NOM#PRENOM", emails, phones, title, titleSkills…). Sans keywordsType, recherche par défaut dans le CV. • Géolocalisation : coordinates: "lat,lon" ou location + geoDistance (km, 5-200).

Tri : sort + order.

Returns : liste paginée des candidats. Utiliser boond_candidates_get ou les outils d'onglets pour le détail.

  • fields : projection côté MCP, jamais transmise à l'API — remplace le résumé par les seuls attributs listés (noms inconnus ignorés). À utiliser sur les grosses pages.

  • Pagination : pageSize 1–500 (défaut 30), page 1–100 — au-delà : refus, affiner les filtres.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoNuméro de page (défaut: 1, max: 100)
sortNoChamp de tri (ex: lastName, firstName, updateDate)
flagsNoIDs de tags.
orderNoOrdre de tri (asc/desc)
toolsNoIDs d'outils/technos (dictionnaire setting.tool). Logique OU par défaut. Pour ET, ajouter '#AND#' en 1er élément: tools=['#AND#','12','34'].
fieldsNoProjection : attributs à afficher par résultat (ex: ['title','updateDate']). Absent = résumé standard. Noms inconnus ignorés.
periodNoFiltre temporel : 'created', 'updated', 'available', 'noAction'/'withActions'/'withoutActions'. À combiner avec `startDate` + `endDate`.
endDateNoDate de fin (YYYY-MM-DD), à utiliser avec `period`.
shieldsNoNiveau de complétude des champs conditionnels.
sourcesNoIDs de sources de recrutement (dictionnaire setting.source).
keywordsNoMots-clés (par défaut, recherche dans CV + dossier technique). Combinable avec `keywordsType`.
locationNoAdresse texte. Requiert `geoDistance`.
pageSizeNoNombre de résultats par page (max: 500, défaut: 30)
languagesNoLangues au format `langueId|niveauId` (ex: ['anglais|courant']).
startDateNoDate de début (YYYY-MM-DD), à utiliser avec `period`.
trainingsNoIDs de formations.
coordinatesNoCoordonnées GPS 'lat,lon'. Requiert `geoDistance`.
evaluationsNoIDs d'évaluations.
experiencesNoIDs de niveaux d'expérience.
geoDistanceNoRayon km (5-200).
keywordsTypeNoChamp ciblé par `keywords` (défaut: 'resumeTd').
activityAreasNoIDs de secteurs d'activité (dictionnaire setting.activityArea).
contractTypesNoIDs de types de contrat recherchés (dictionnaire setting.typeOf.contract).
mobilityAreasNoIDs de zones de mobilité.
candidateTypesNoIDs de types de candidat (dictionnaire setting.typeOf.resource).
expertiseAreasNoIDs de domaines d'expertise.
perimeterPolesNoIDs de pôles. Conserve les entités dont le responsable appartient à ces pôles.
candidateStatesNoIDs d'états de candidat (dictionnaire setting.state.candidate via boond_application_dictionary).
narrowPerimeterNoSi true, jointure ET entre les filtres `perimeter*` (au lieu de OU par défaut).
perimeterDynamicNoPérimètre dynamique relatif à l'utilisateur courant (raccourci sans avoir à connaître son propre ID). Valeurs : 'data' (mes propres données), 'managers' (mon équipe / mes N-1), 'agencies' (mes agences), 'poles' (mes pôles), 'businessUnits' (mes BU). Combinable.
availabilityTypesNoIDs de types de disponibilité (dictionnaire setting.availability).
perimeterAgenciesNoIDs d'agences. Conserve les entités dont le responsable appartient à ces agences.
perimeterManagersNoIDs des managers (ressources). Conserve les entités dont le responsable est l'un de ces managers. Pour 'mon équipe / N-1 d'une personne X', passer [X_id]. Obtenir son propre ID via boond_application_current_user.
providerCompaniesNoIDs de sociétés sous-traitantes.
perimeterManagersTypeNoType de responsable visé par `perimeterManagers`: 'main' (Main Manager) ou 'hr' (HR Manager).
perimeterBusinessUnitsNoIDs de business units. Conserve les entités dont le responsable appartient à ces BU.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countYesNombre d'éléments retournés sur cette page
itemsYes
totalNoNombre total de résultats côté BoondManager

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv2.17.0
    • changedInput schema / properties / shields / description
      Previous value: -"Niveau de complétude."New value: +"Niveau de complétude des champs conditionnels."
  2. Changed2 schema fields changedv2.12.2
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
    • removedOutput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
  3. Changed1 schema field changedv2.9.0
    • changedInput schema / properties / fields / description
      Previous value: -"Projection côté client : liste d'attributs JSON:API à afficher pour chaque résultat (ex: ['title', 'updateDate', 'numberOfActiveProjects']). Réduit fortement la taille de la réponse. Absent = résumé standard (nom, email, ville, statut...). Les noms inconnus sont ignorés."New value: +"Projection : attributs à afficher par résultat (ex: ['title','updateDate']). Absent = résumé standard. Noms inconnus ignorés."
  4. Changed3 schema fields changedv2.7.0
    • addedInput schema / properties / fields
      Added value: +{
      +  "description": "Projection côté client : liste d'attributs JSON:API à afficher pour chaque résultat (ex: ['title', 'updateDate', 'numberOfActiveProjects']). Réduit fortement la taille de la réponse. Absent = résumé standard (nom, email, ville, statut...). Les noms inconnus sont ignorés.",
      +  "items": {
      +    "type": "string"
      +  },
      +  "type": "array"
      +}
    • changedInput schema / properties / tools / description
      Previous value: -"IDs d'outils/technos. Logique OU par défaut. Pour ET, ajouter '#AND#' en 1er élément."New value: +"IDs d'outils/technos (dictionnaire setting.tool). Logique OU par défaut. Pour ET, ajouter '#AND#' en 1er élément: tools=['#AND#','12','34']."
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "count": {
      +      "description": "Nombre d'éléments retournés sur cette page",
      +      "type": "number"
      +    },
      +    "items": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "attributes": {
      +            "additionalProperties": {},
      +            "description": "Attributs projetés (présent si `fields` est fourni)",
      +            "propertyNames": {
      +              "type": "string"
      +            },
      +            "type": "object"
      +          },
      +          "id": {
      +            "type": "string"
      +          },
      +          "summary": {
      +            "description": "Résumé standard (absent si `fields` est fourni)",
      +            "type": "string"
      +          },
      +          "type": {
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "total": {
      +      "description": "Nombre total de résultats côté BoondManager",
      +      "type": "number"
      +    }
      +  },
      +  "required": [
      +    "count",
      +    "items"
      +  ],
      +  "type": "object"
      +}
  5. First observedv2.1.0

TDQS

A4.9/5.0
Behavior5/5

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

Even with annotations declaring read-only, open-world, and idempotent behavior, the description adds meaningful runtime facts: fields is a client-side projection never sent to the API, unknown field names are ignored, page sizes beyond 100 are refused, and hired candidates disappear from this search. These details materially change how an agent should invoke and interpret the tool.

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 long, but deliberately structured: scope first, sibling distinction second, then compact bullet groups covering the full parameter space. Every block adds practical value, and the length is justified by 36 optional filters; it is not padded, though a shorter summary of the most common paths would make it slightly easier to scan.

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?

Given the tool's complexity, the output schema, and the annotation coverage, the description is complete: it covers the main filter families, projection behavior, pagination limits, result shape, and detail-tool routing. An agent has everything needed to decide when to call it and how to construct a valid request.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Although the schema already describes every parameter, the description adds actionable grouping and composition knowledge: '#AND#' for tools, languageId|levelId format, perimeterDynamic shortcuts, perimeterManagersType main/hr, period values, and geoDistance range. It explains why certain dictionaries matter and how to express common searches, which goes well beyond the raw schema.

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 opens with a specific verb and resource, 'Recherche des candidats dans BoondManager avec filtres serveur', and immediately distinguishes it from boond_resources_search by noting that candidates and resources are separate repositories and that a hired person stops being findable here. This gives an agent a crisp, non-ambiguous identity for the tool.

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?

It explicitly tells the agent when to prefer this tool over boond_resources_search, and names boond_candidates_get and tab tools for follow-up detail. The bulleted use cases map abstract user goals (e.g. 'Mes candidats', technical profile, sourcing, period) to concrete parameter combinations, so an agent can pick filters without guessing.

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