Skip to main content
Glama
fauguste

boondmanager-mcp-server

by fauguste

Rechercher des contacts

boond_contacts_search
Read-onlyIdempotent

Search client and prospect contacts in BoondManager with server-side filters for keywords, states, types, dates, completeness, and dynamic perimeters.

Instructions

Recherche des contacts (interlocuteurs clients / prospects) dans BoondManager avec filtres serveur.

Cas d'usage courants : • Mes contacts sans connaître son propre ID : perimeterDynamic: ["data"]. Pour "contacts gérés par X" : perimeterManagers: [<X_id>]. • Contacts d'une société donnée : utiliser keywords: "CSOC<companyId>" (préfixe CSOC + ID). Exemple : keywords: "CSOC6420" pour la société 6420. • États / types : states: [<id>] (dictionnaire setting.state.contact), typesOf: [<id>] (⚠️ avec un 's' final, dictionnaire setting.typeOf.contact), companyStates (états des sociétés rattachées). IDs entiers. • Profil métier : activityAreas, expertiseAreas, tools, origins (sources), influencers. • Période : period: "created"|"updated"|"withActions"|"withoutActions"|"noAction" + startDate/endDate. • Complétude : completeness: ["email:empty","phone:empty"] (OU par défaut, '#AND#' en 1er pour ET) — utile pour "contacts sans email". • Recherche par nom : keywords: "Dupont" + keywordsType: "lastName" (ou firstName, fullName "NOM#PRENOM", companyFullName "CSOCid#NOM#PRENOM", emails, phones, socialNetworks).

Tri : sort + order.

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

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', 'noAction'/'withActions'/'withoutActions'. À combiner avec `startDate` + `endDate`.
statesNoIDs d'états de contact (dictionnaire setting.state.contact).
endDateNoDate de fin (YYYY-MM-DD), à utiliser avec `period`.
originsNoIDs d'origines (dictionnaire setting.origin).
shieldsNoNiveau de complétude.
typesOfNoIDs de types de contact (dictionnaire setting.typeOf.contact). ⚠️ Le paramètre s'appelle `typesOf` (avec un 's'), PAS `typeOf`.
keywordsNoMots-clés (défaut: nom + prénom + société + fonction + périmètre technique). Combinable avec `keywordsType`.
pageSizeNoNombre de résultats par page (max: 500, défaut: 30)
startDateNoDate de début (YYYY-MM-DD), à utiliser avec `period`.
influencersNoIDs de contacts influenceurs.
completenessNoFiltre par complétude des champs au format `fieldId:mode` (fieldId: email/phone/socialNetworks ; mode: empty/filled). Logique OU par défaut, '#AND#' en 1er pour ET. Ex: ['email:empty','phone:empty'].
keywordsTypeNoChamp ciblé. Défaut: 'default'. Pour 'fullName' utiliser `keywords = 'NOM#PRENOM'`. Pour 'companyFullName' utiliser `keywords = 'CSOCid#NOM#PRENOM'`.
activityAreasNoIDs de secteurs d'activité de la société.
companyStatesNoIDs d'états des sociétés rattachées (dictionnaire setting.state.company).
expertiseAreasNoIDs de domaines d'expertise de la société.
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.

Output Schema

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

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

Annotations already convey read-only and idempotent behavior (readOnlyHint=true, idempotentHint=true), and the description adds value by noting server-side filtering and paginated results. It also clarifies parameter-specific behavior like the '#AND#' prefix for AND logic and the 'typesOf' spelling pitfall. No contradictions with 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 lengthy but well-structured with a summary line, bullet points for common use cases, and a closing note about return values. Each bullet adds unique value (examples, pitfalls, syntax details) necessary for a 27-parameter tool, so the length is justified. It is front-loaded with the core purpose and then organized logically. It loses a point for not being tighter, but the complexity warrants the detail.

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 27 optional parameters, rich schema descriptions, and an output schema, the description gives comprehensive guidance on when/how to use it, including parameter interactions, examples, and sibling tools for details. It covers all major filter categories (perimeter, states, period, completeness, keywords) and even returns a pagination hint. There is no obvious missing piece.

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?

Schema coverage is 100%, but the description goes far beyond by explaining real-world usage: examples like 'keywords: "CSOC6420"' for company contacts, 'perimeterDynamic: ["data"]' for 'mes contacts', and format details like 'fullName' using 'NOM#PRENOM'. It also disambiguates tricky parameters (e.g., typesOf vs typeOf, AND/OR logic) making it exceptionally helpful for an agent.

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 clear statement: 'Recherche des contacts (interlocuteurs clients / prospects) dans BoondManager avec filtres serveur.' This names the exact resource (contacts) and distinguishes it from sibling search tools by explicitly focusing on contacts and mentioning server-side filtering. The detailed use cases further reinforce its specific purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit common use cases (e.g., 'Mes contacts', contacts of a company, states/types, period, completeness) and closes with a direct pointer: 'Utiliser boond_contacts_get ou les outils d'onglets pour le détail.' This tells the agent when to use this search tool versus alternatives for detail retrieval. However, it does not contrast with other search tools (e.g., companies_search), so it is not a perfect 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/fauguste/boondmanager-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server