Skip to main content
Glama
fauguste

boondmanager-mcp-server

Factures impayées à relancer

boond_workflow_factures_a_relancer
Read-onlyIdempotent

Generate a runbook of overdue unpaid invoices grouped by company, with optional filtering, to drive follow-up actions.

Instructions

Liste les factures impayées avec date d'échéance dépassée, regroupées par société. Optionnellement filtrable sur une société spécifique.

Quand : pour dérouler ce scénario multi-étapes sans avoir à retrouver soi-même le bon enchaînement d'outils et les bons noms de filtres. Plutôt que : le prompt MCP factures_a_relancer si le client l'expose — contenu identique, sans consommer un appel d'outil. Cette variante existe pour les clients qui traitent mal prompts/get (claude.ai notamment).

  • N'appelle aucune API BoondManager et ne lit aucune donnée : la réponse est générée côté serveur MCP.

Returns : un runbook en texte — la liste ordonnée des appels Boond à effectuer, avec les filtres exacts. C'est ensuite au modèle de les exécuter ; rien n'est fait par cet appel.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
society_idNoSociété ciblée pour la relance. Accepte soit l'ID numérique, soit le nom de la société (résolution auto via `boond_companies_search`).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv2.12.2
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
  2. 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 read-only, idempotent, non-destructive. The description adds valuable context: it does not call any BoondManager API and does not read any data, with the response generated server-side. It also clarifies that nothing is executed by this call—only a runbook is returned. This goes well beyond the annotations and gives the agent a precise understanding of side effects and security.

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 sections (purpose, when to use, alternative, behavior, returns). It is somewhat lengthy but each part adds value, and the most important purpose is front-loaded. The only slight inefficiency is the repetitive mention of the runbook concept, but overall it's well-organized.

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 workflow tool with a single optional parameter and no output schema, the description fully explains the output (a runbook with exact filters), the internal behavior (no API calls), and the usage context. It also provides an alternative path. An agent has everything needed to decide whether to call it and what to expect.

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 coverage is 100% for the single parameter. The description adds meaning: society_id accepts either a numeric ID or a comany name, with automatic resolution via `boond_companies_search`. This clarifies the input format and resolution behavior, which is helpful for correct invocation, exceeding the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool lists unpaid invoices with past due date, grouped by company, and optionally filtered by company. However, the initial sentence 'Liste les factures impayées' could be misread as returning actual data, while later it clarifies the tool returns a runbook (ordered instructions) rather than the data itself. This nuance is eventually clear but initially slightly ambiguous. It is distinct from sibling workflow tools because of its specific scenario.

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?

Explicitly states when to use it ('pour dérouler ce scénario multi-étapes sans avoir à retrouver soi-même le bon enchaînement d'outils et les bons noms de filtres') and directly names an alternative (the MCP prompt `factures_a_relancer`), explaining the trade-off (avoids an API call but only for clients that handle prompts/get poorly). This leaves no doubt about selection.

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