Skip to main content
Glama
fauguste

boondmanager-mcp-server

by fauguste

Rechercher des opportunités

boond_opportunities_search
Read-onlyIdempotent

Search and filter BoondManager commercial opportunities by state, type, manager, keyword, or date range. Returns a paginated list of matching opportunities.

Instructions

Recherche des opportunités commerciales dans BoondManager avec filtres serveur.

Cas d'usage courants : • Mes opportunités sans connaître son propre ID : perimeterDynamic: ["data"]. Pour "opportunités de X" : perimeterManagers: [<X_id>] (combiner avec perimeterManagersType: "main"|"hr"). • États / types : opportunityStates: [<id>] (dictionnaire setting.state.opportunity), opportunityTypes: [<id>] (setting.typeOf.project). IDs entiers issus du dictionnaire. • Lié à une société/contact/candidat : utiliser keywords avec préfixes — "CSOC<id>" (société), "CCON<id>" (contact), "CAND<id>" (candidat), "COMP<id>" (ressource), "PROD<id>" (produit), "AO<id>" (opportunité). • Métier : activityAreas, expertiseAreas, tools, places (zones), durations, origins. • Positionnements : positioningStates: [<id>] ou ["none"] pour les opportunités sans positionnement. • Période : period: "created"|"started"|"closingDate"|"updated"|"updatedPositioning"|"withActions"|... + startDate/endDate. Ex: clôtures 2026 → period: "closingDate", startDate: "2026-01-01", endDate: "2026-12-31".

Tri : sort: "creationDate"|"title"|"company.name"|"startDate"|"endDate"|"state"|"closingDate"|"answerDate"|"updateDate"|... + order.

Returns : liste paginée des opportunités. Utiliser boond_opportunities_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' (création), 'started', 'closingDate' (date de closing), 'updated', 'updatedPositioning', 'noAction'/'withActions'/'withoutActions'. À combiner avec `startDate` + `endDate`.
placesNoIDs de zones (dictionnaire setting.mobilityArea).
endDateNoDate de fin (YYYY-MM-DD), à utiliser avec `period`.
originsNoIDs d'origines.
shieldsNoNiveau de complétude.
keywordsNoMots-clés. Pour cibler par ID préfixé : 'AOnnn' (opportunité), 'CSOCnnn' (société), 'CCONnnn' (contact), 'CANDnnn' (candidat), 'COMPnnn' (ressource), 'PRODnnn' (produit). Sinon recherche plein texte sur titre/société.
pageSizeNoNombre de résultats par page (max: 500, défaut: 30)
durationsNoIDs de durées (dictionnaire setting.duration).
startDateNoDate de début (YYYY-MM-DD), à utiliser avec `period`.
activityAreasNoIDs de secteurs d'activité.
expertiseAreasNoIDs de domaines d'expertise.
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).
opportunityTypesNoIDs de types d'opportunité (dictionnaire setting.typeOf.project).
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.
opportunityStatesNoIDs d'états d'opportunité (dictionnaire setting.state.opportunity).
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.
positioningStatesNoIDs d'états de positionnement, ou 'none' pour les opportunités sans positionnement.
perimeterManagersTypeNoType de responsable visé par `perimeterManagers` (main/hr).
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?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description focuses on additional behavioral nuances: server-side filtering, paginated return, sorting options, perimeter filter combination (OR by default, AND with narrowPerimeter), keyword prefix semantics, and projection behavior (unknown field names ignored). This meaningfully exceeds the annotations' safety-only information.

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?

Although long, the description is extremely information-dense and well-structured: a one-sentence purpose statement followed by bolded grouped bullet points for each logical use case, then sorting and return behavior. Every sentence adds actionable value for a complex 27-parameter search tool, and the formatting makes the content easily scannable.

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?

Despite the tool's high complexity (27 optional parameters, no required ones), the description covers the key filtering patterns, sort options, pagination, and explicitly points to detail tools for follow-up. The output schema exists, so not detailing the full return shape is acceptable. The description also mentions dictionary sources for many ID-based filters, making it nearly complete for practical use.

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?

With 100% schema description coverage, the baseline is 3, but the description adds substantial semantics on top: it explains how perimeterDynamic/perimeterManagers relate to user identity, gives concrete examples for state/type filters, and details keyword prefix conventions (CSOC, CCON, CAND, etc.). This goes well beyond the one-line schema descriptions and helps an agent choose and compose parameters correctly.

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 starts with a clear, specific statement: 'Recherche des opportunités commerciales dans BoondManager avec filtres serveur' — a search action on the opportunities resource with server-side filtering. It further distinguishes itself from detail-fetching tools by explicitly directing users to boond_opportunities_get for full detail, separating it clearly from siblings.

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 an extensive 'Cas d'usage courants' section that maps real-world intents (my opportunities, states/types, linked entities, business fields, positionings, date ranges) to specific filter parameters and examples. It also references dictionary tools for ID lookups and explicitly says to use boond_opportunities_get for detail, giving clear when-to-use and when-not-to-use guidance.

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