Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Rechercher des actions

boond_actions_search
Read-onlyIdempotent

Find calls, emails, meetings, and notes across candidates, resources, contacts, companies, opportunities, or projects. Filter by type, date period, and scope to uncover commercial or HR history.

Instructions

Recherche des actions (appels, emails, RDV, notes) dans BoondManager par entité rattachée (candidat, ressource, contact, société, opportunité, projet), type (actionTypes), période (period + dates ou periodDynamic) et périmètre (perimeter*).

Quand : pour balayer l'historique commercial ou RH sur un périmètre, plusieurs entités confondues. Plutôt que : les onglets actions d'une entité connue (boond_candidates_actions, boond_companies_actions, boond_projects_actions…) : plus direct et sans filtre de périmètre à construire.

Les filtres candidateId / resourceId / contactId / companyId sont convertis en références keywords (CAND / COMP / CCON / CSOC) : l'API n'a pas de paramètre dédié.

Returns: Liste des actions correspondantes.

  • 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 drapeaux (flags) — `boond_flags_search`.
orderNoOrdre de tri (asc/desc)
fieldsNoProjection : attributs à afficher par résultat (ex: ['title','updateDate']). Absent = résumé standard. Noms inconnus ignorés.
periodNoChamp de date borné par `startDate` / `endDate` : started (date de l'action), created, updated.
endDateNoDate de fin (YYYY-MM-DD), à utiliser avec `period`.
orderIdNoFiltrer par ID bon de commande (référence keywords BDC<id>)
keywordsNoMots-clés de recherche
pageSizeNoNombre de résultats par page (max: 500, défaut: 30)
companyIdNoFiltrer par ID société (référence keywords CSOC<id>)
contactIdNoFiltrer par ID contact (référence keywords CCON<id>)
invoiceIdNoFiltrer par ID facture (référence keywords FACT<id>)
projectIdNoFiltrer par ID projet (référence keywords PRJ<id>)
startDateNoDate de début (YYYY-MM-DD), à utiliser avec `period`.
resourceIdNoFiltrer par ID ressource (référence keywords COMP<id>)
actionTypesNoIDs de types d'action — `boond://dictionary/actions/<entité>` (les types sont déclarés par entité de rattachement).
candidateIdNoFiltrer par ID candidat (référence keywords CAND<id>)
opportunityIdNoFiltrer par ID opportunité (référence keywords AO<id>)
periodDynamicNoFenêtre relative appliquée à `period` (à la place de `startDate` / `endDate`) : today, thisWeek, thisMonth, lastMonth, thisYear, untilToday…
perimeterPolesNoIDs de pôles. Conserve les entités dont le responsable appartient à ces pôles.
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.
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.
perimeterBusinessUnitsNoIDs de business units. Conserve les entités dont le responsable appartient à ces BU.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed28 schema fields changedv2.17.0
    • addedInput schema / properties / actionTypes
      Added value: +{
      +  "description": "IDs de types d'action — `boond://dictionary/actions/<entité>` (les types sont déclarés par entité de rattachement).",
      +  "items": {
      +    "maximum": 9007199254740991,
      +    "minimum": -9007199254740991,
      +    "type": "integer"
      +  },
      +  "type": "array"
      +}
    • changedInput schema / properties / candidateId / description
      Previous value: -"Filtrer par ID candidat"New value: +"Filtrer par ID candidat (référence keywords CAND<id>)"
    • addedInput schema / properties / candidateId / pattern
      Added value: +"^\\d+$"
    • changedInput schema / properties / companyId / description
      Previous value: -"Filtrer par ID société"New value: +"Filtrer par ID société (référence keywords CSOC<id>)"
    • addedInput schema / properties / companyId / pattern
      Added value: +"^\\d+$"
    • changedInput schema / properties / contactId / description
      Previous value: -"Filtrer par ID contact"New value: +"Filtrer par ID contact (référence keywords CCON<id>)"
    • addedInput schema / properties / contactId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / endDate
      Added value: +{
      +  "description": "Date de fin (YYYY-MM-DD), à utiliser avec `period`.",
      +  "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
      +  "type": "string"
      +}
    • addedInput schema / properties / flags
      Added value: +{
      +  "description": "IDs de drapeaux (flags) — `boond_flags_search`.",
      +  "items": {
      +    "maximum": 9007199254740991,
      +    "minimum": -9007199254740991,
      +    "type": "integer"
      +  },
      +  "type": "array"
      +}
    • addedInput schema / properties / invoiceId
      Added value: +{
      +  "description": "Filtrer par ID facture (référence keywords FACT<id>)",
      +  "pattern": "^\\d+$",
      +  "type": "string"
      +}
    • addedInput schema / properties / narrowPerimeter
      Added value: +{
      +  "description": "Si true, jointure ET entre les filtres `perimeter*` (au lieu de OU par défaut).",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / opportunityId
      Added value: +{
      +  "description": "Filtrer par ID opportunité (référence keywords AO<id>)",
      +  "pattern": "^\\d+$",
      +  "type": "string"
      +}
    • addedInput schema / properties / order
      Added value: +{
      +  "description": "Ordre de tri (asc/desc)",
      +  "enum": [
      +    "asc",
      +    "desc"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / orderId
      Added value: +{
      +  "description": "Filtrer par ID bon de commande (référence keywords BDC<id>)",
      +  "pattern": "^\\d+$",
      +  "type": "string"
      +}
    • changedInput schema / properties / page / description
      Previous value: -"Numéro de page (max: 100)"New value: +"Numéro de page (défaut: 1, max: 100)"
    • changedInput schema / properties / pageSize / description
      Previous value: -"Résultats par page"New value: +"Nombre de résultats par page (max: 500, défaut: 30)"
    • addedInput schema / properties / perimeterAgencies
      Added value: +{
      +  "description": "IDs d'agences. Conserve les entités dont le responsable appartient à ces agences.",
      +  "items": {
      +    "maximum": 9007199254740991,
      +    "minimum": -9007199254740991,
      +    "type": "integer"
      +  },
      +  "type": "array"
      +}
    • addedInput schema / properties / perimeterBusinessUnits
      Added value: +{
      +  "description": "IDs de business units. Conserve les entités dont le responsable appartient à ces BU.",
      +  "items": {
      +    "maximum": 9007199254740991,
      +    "minimum": -9007199254740991,
      +    "type": "integer"
      +  },
      +  "type": "array"
      +}
    • addedInput schema / properties / perimeterDynamic
      Added value: +{
      +  "description": "Pé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.",
      +  "items": {
      +    "enum": [
      +      "data",
      +      "agencies",
      +      "poles",
      +      "businessUnits",
      +      "managers"
      +    ],
      +    "type": "string"
      +  },
      +  "type": "array"
      +}
    • addedInput schema / properties / perimeterManagers
      Added value: +{
      +  "description": "IDs 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.",
      +  "items": {
      +    "maximum": 9007199254740991,
      +    "minimum": -9007199254740991,
      +    "type": "integer"
      +  },
      +  "type": "array"
      +}
    • addedInput schema / properties / perimeterPoles
      Added value: +{
      +  "description": "IDs de pôles. Conserve les entités dont le responsable appartient à ces pôles.",
      +  "items": {
      +    "maximum": 9007199254740991,
      +    "minimum": -9007199254740991,
      +    "type": "integer"
      +  },
      +  "type": "array"
      +}
    • addedInput schema / properties / period
      Added value: +{
      +  "description": "Champ de date borné par `startDate` / `endDate` : started (date de l'action), created, updated.",
      +  "enum": [
      +    "started",
      +    "created",
      +    "updated"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / periodDynamic
      Added value: +{
      +  "description": "Fenêtre relative appliquée à `period` (à la place de `startDate` / `endDate`) : today, thisWeek, thisMonth, lastMonth, thisYear, untilToday…",
      +  "enum": [
      +    "today",
      +    "yesterday",
      +    "tomorrow",
      +    "thisWeek",
      +    "lastWeek",
      +    "nextWeek",
      +    "thisMonth",
      +    "lastMonth",
      +    "nextMonth",
      +    "thisTrimester",
      +    "lastTrimester",
      +    "nextTrimester",
      +    "thisSemester",
      +    "lastSemester",
      +    "nextSemester",
      +    "thisYear",
      +    "lastYear",
      +    "nextYear",
      +    "thisFiscalYear",
      +    "lastFiscalYear",
      +    "nextFiscalYear",
      +    "untilToday"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / projectId
      Added value: +{
      +  "description": "Filtrer par ID projet (référence keywords PRJ<id>)",
      +  "pattern": "^\\d+$",
      +  "type": "string"
      +}
    • changedInput schema / properties / resourceId / description
      Previous value: -"Filtrer par ID ressource"New value: +"Filtrer par ID ressource (référence keywords COMP<id>)"
    • addedInput schema / properties / resourceId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / sort
      Added value: +{
      +  "description": "Champ de tri (ex: lastName, firstName, updateDate)",
      +  "type": "string"
      +}
    • addedInput schema / properties / startDate
      Added value: +{
      +  "description": "Date de début (YYYY-MM-DD), à utiliser avec `period`.",
      +  "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
      +  "type": "string"
      +}
  2. Changed1 schema field changedv2.12.2
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
  3. Changed1 schema field changedv2.9.0
    • addedInput schema / properties / fields
      Added value: +{
      +  "description": "Projection : attributs à afficher par résultat (ex: ['title','updateDate']). Absent = résumé standard. Noms inconnus ignorés.",
      +  "items": {
      +    "type": "string"
      +  },
      +  "type": "array"
      +}
  4. First observedv2.1.0

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable behavioral details beyond this: the keyword conversion for entity IDs, the pagination limits (pageSize 1–500, page 1–100) with refusal beyond those, and the fact that the `fields` parameter is a projection never sent to the API. This enriches the agent's understanding of how the tool behaves without contradicting annotations.

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 fairly long but well-structured: it opens with the core purpose, then provides 'Quand' and 'Plutôt que' guidance, and closes with notes on `fields` and pagination. Each sentence earns its place and is front-loaded with the most important information. It is not bloated; the length is justified by the tool's complexity.

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 tool with 26 optional parameters, no required fields, and no output schema, the description covers the essential context: when to use, what it returns, and key behavioral caveats. It does not explicitly describe the response structure (e.g., fields available in the summary), but the schema provides parameter details. The description is complete enough for an agent to invoke the tool correctly for typical searches, though it could mention how `sort`/`order` interact with the result.

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 is 3. The description provides a high-level overview of parameter categories (entity, type, period, perimeter) and explains the `fields` and pagination semantics, but most parameter details (e.g., date patterns, enums) are already in the schema. The description does not add significant meaning beyond what the schema provides; it mostly summarizes and clarifies a few points.

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 clearly states the verb 'Rechercher' and the resource 'actions' with a detailed list of filter categories (entity, type, period, perimeter). It explicitly differentiates itself from entity-specific action tabs by naming the siblings (boond_candidates_actions, boond_companies_actions, etc.) and the use case (multiple entities). This is a specific, unambiguous 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 provides explicit 'Quand' (when) and 'Plutôt que' (rather than) guidance, telling the agent to use this tool for scanning history across multiple entities and to prefer entity-specific tabs when the entity is known. It also notes that entity ID filters are converted to keywords, clarifying an API quirk. This is exemplary routing 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