Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Rechercher des factures

boond_invoices_search
Read-onlyIdempotent

Search and list customer invoices by company, project, status, period, or credit note to track outstanding amounts and expected payments.

Instructions

Liste et recherche les factures client, par société, projet, état (states), période (period + dates, ou periodDynamic), périmètre (perimeter*) ou avoir / facture (creditNote).

Quand : pour suivre la facturation client (encours, retards, règlements attendus). Plutôt que : boond_provider_invoices_search pour les factures d'achat — celui-ci ne couvre que le sens vente, et les deux ne partagent pas d'endpoint.

companyId / projectId sont convertis en références keywords (CSOC<id>, PRJ<id>) — l'API n'a pas de paramètre dédié et ignorerait un companyId brut.

Returns : page de résumés (référence, date, montants HT/TTC, état). Lecture seule.

  • 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)
closedNotrue = factures / avoirs clôturés uniquement, false = non clôturés uniquement.
fieldsNoProjection : attributs à afficher par résultat (ex: ['title','updateDate']). Absent = résumé standard. Noms inconnus ignorés.
periodNoChamp de date borné par `startDate` / `endDate` : created, updated, expectedPayment (échéance), performedPayment (règlement), period (période facturée, défaut).
statesNoIDs d'états de facture — `boond://dictionary/states/invoices` (ex. impayées = tous les états sauf « payée »).
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 (référence, société...)
pageSizeNoNombre de résultats par page (max: 500, défaut: 30)
companiesNoIDs de sociétés (filtre API natif, équivalent de `companyId` pour plusieurs sociétés).
companyIdNoFiltrer par ID société (référence keywords CSOC<id>)
contactIdNoFiltrer par ID contact (référence keywords CCON<id>)
projectIdNoFiltrer par ID projet (référence keywords PRJ<id>)
startDateNoDate de début (YYYY-MM-DD), à utiliser avec `period`.
creditNoteNotrue = avoirs uniquement, false = factures uniquement.
projectTypesNoIDs de types de projet — `boond://dictionary/typeOf/projects`.
periodDynamicNoFenêtre relative appliquée à `period` (à la place de `startDate` / `endDate`) : today, thisWeek, thisMonth, lastMonth, thisYear, untilToday…
paymentMethodsNoIDs de modes de paiement — `boond://dictionary/paymentMethods`.
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

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed30 schema fields changedv2.17.0
    • addedInput schema / properties / closed
      Added value: +{
      +  "description": "true = factures / avoirs clôturés uniquement, false = non clôturés uniquement.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / companies
      Added value: +{
      +  "description": "IDs de sociétés (filtre API natif, équivalent de `companyId` pour plusieurs sociétés).",
      +  "items": {
      +    "maximum": 9007199254740991,
      +    "minimum": -9007199254740991,
      +    "type": "integer"
      +  },
      +  "type": "array"
      +}
    • 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+$"
    • addedInput schema / properties / contactId
      Added value: +{
      +  "description": "Filtrer par ID contact (référence keywords CCON<id>)",
      +  "pattern": "^\\d+$",
      +  "type": "string"
      +}
    • addedInput schema / properties / creditNote
      Added value: +{
      +  "description": "true = avoirs uniquement, false = factures uniquement.",
      +  "type": "boolean"
      +}
    • changedInput schema / properties / endDate / description
      Previous value: -"Date de fin de période (YYYY-MM-DD)"New value: +"Date de fin (YYYY-MM-DD), à utiliser avec `period`."
    • addedInput schema / properties / endDate / pattern
      Added value: +"^\\d{4}-\\d{2}-\\d{2}$"
    • 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 / narrowPerimeter
      Added value: +{
      +  "description": "Si true, jointure ET entre les filtres `perimeter*` (au lieu de OU par défaut).",
      +  "type": "boolean"
      +}
    • 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 / paymentMethods
      Added value: +{
      +  "description": "IDs de modes de paiement — `boond://dictionary/paymentMethods`.",
      +  "items": {
      +    "maximum": 9007199254740991,
      +    "minimum": -9007199254740991,
      +    "type": "integer"
      +  },
      +  "type": "array"
      +}
    • 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"
      +}
    • changedInput schema / properties / period / description
      Previous value: -"Type de période (created, updated, expectedPayment, performedPayment, period)"New value: +"Champ de date borné par `startDate` / `endDate` : created, updated, expectedPayment (échéance), performedPayment (règlement), period (période facturée, défaut)."
    • addedInput schema / properties / period / enum
      Added value: +[
      +  "created",
      +  "updated",
      +  "expectedPayment",
      +  "performedPayment",
      +  "period"
      +]
    • 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"
      +}
    • changedInput schema / properties / projectId / description
      Previous value: -"Filtrer par ID projet"New value: +"Filtrer par ID projet (référence keywords PRJ<id>)"
    • addedInput schema / properties / projectId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / projectTypes
      Added value: +{
      +  "description": "IDs de types de projet — `boond://dictionary/typeOf/projects`.",
      +  "items": {
      +    "maximum": 9007199254740991,
      +    "minimum": -9007199254740991,
      +    "type": "integer"
      +  },
      +  "type": "array"
      +}
    • addedInput schema / properties / sort
      Added value: +{
      +  "description": "Champ de tri (ex: lastName, firstName, updateDate)",
      +  "type": "string"
      +}
    • changedInput schema / properties / startDate / description
      Previous value: -"Date de début de période (YYYY-MM-DD)"New value: +"Date de début (YYYY-MM-DD), à utiliser avec `period`."
    • addedInput schema / properties / startDate / pattern
      Added value: +"^\\d{4}-\\d{2}-\\d{2}$"
    • addedInput schema / properties / states
      Added value: +{
      +  "description": "IDs d'états de facture — `boond://dictionary/states/invoices` (ex. impayées = tous les états sauf « payée »).",
      +  "items": {
      +    "maximum": 9007199254740991,
      +    "minimum": -9007199254740991,
      +    "type": "integer"
      +  },
      +  "type": "array"
      +}
  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
    • 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. Changed1 schema field changedv2.7.0
    • 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.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint false, so the safety profile is set. The description adds beyond that: it warns that companyId/projectId must be converted to keyword references or the API would ignore them, describes that fields is an MCP-side projection never sent to the API, and states pagination beyond limits leads to refusal. These are genuine behavioral disclosures not visible in the 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 structured with clear short paragraphs and bullet-like sections, front-loading the core purpose and then adding usage notes, return shape, and key edge cases. It is not terse, but every sentence contributes information about behavior, filtering variants, or exclusions.

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 (27 optional parameters, 100% schema coverage, output schema present), the description covers the essential decisions: what the tool returns, how to distinguish from sibling search tools, key filter families, pagination limits, and the projection behavior. It is complete enough for an agent to select and invoke this tool correctly without reading every schema field.

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

Parameters4/5

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

Schema description coverage is 100%, so baseline is 3, but the description adds meaningful context: it explicitly says fields replaces the summary with only listed attributes and is meant for large pages, that the API has no dedicated companyId/projectId parameter (hence the keyword conversion), and that pagination refusal requires refining filters. This goes beyond what the schema provides and helps agents use the parameters effectively.

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: 'Liste et recherche les factures client' — lists and searches customer invoices. It explicitly distinguishes itself from boond_provider_invoices_search, stating this tool covers only the sales direction, so an agent can immediately tell them apart.

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 explicit 'Quand' (when to use) context and directly names the alternative tool with a clear disambiguation: 'Plutôt que : boond_provider_invoices_search pour les factures d'achat'. It also clarifies the two tools do not share an endpoint, leaving no ambiguity.

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