Skip to main content
Glama
fauguste

boondmanager-mcp-server

by fauguste

Rechercher des contacts

boond_contacts_search
Read-onlyIdempotent

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

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
Install Server

TDQS

A5/5.0
Behavior5/5

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

Beyond the rich annotations (readOnly, openWorld, idempotent, non-destructive), the description discloses non-obvious behavior: server-side filtering, paginated returns, OR-by-default with the '#AND#' trick for combining filters, the typesOf naming gotcha (⚠️ with 's'), and keyword format conventions (CSOC prefix, NOM#PRENOM). No contradiction 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.

Conciseness5/5

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

The description is front-loaded (purpose in the first sentence) and uses a scannable bullet structure organized by use case with bolded parameter names and inline code. While long, every section earns its place for a 27-parameter search API, and it avoids restating each parameter's schema description.

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 high-complexity tool (27 optional params, no required params), the description covers the essential combination patterns, sort behavior, return type, and pointer to detail tools. With annotations and output schema covering safety and return structure, the description focuses on the non-obvious semantics an agent needs to invoke the tool correctly.

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 covers 100% of parameters, the description adds meaning beyond schema descriptions: the 'CSOC<companyId>' convention for company-scoped searches, the 'data' shortcut for perimeterDynamic, the NOM#PRENOM format for fullName, dictionary references (setting.state.contact, setting.typeOf.contact), and cross-parameter combination patterns.

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 first sentence states a specific verb+resource: 'Recherche des contacts (interlocuteurs clients / prospects) dans BoondManager avec filtres serveur.' It clarifies the scope (client/prospect contacts) and distinguishes from sibling search tools (resources, companies, candidates), while the closing line differentiates it from boond_contacts_get by noting it returns a paginated summary list.

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?

Provides a dedicated 'Cas d'usage courants' section with concrete recipes for common scenarios (my contacts, by company, by states/types, by period, by completeness, by name). It explicitly names the alternative for detail lookup: 'Utiliser boond_contacts_get ou les outils d'onglets pour le détail' and gives parameter patterns for each context.

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

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