Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Détails d'un formulaire

boond_forms_get
Read-onlyIdempotent

Retrieve a form by ID from BoondManager to get its questions, answers, status, and validator. Use after creating a form or when you have a form ID from a resource or candidate.

Instructions

Récupère un formulaire (entretien annuel, bilan de fin de mission, évaluation) par son ID : questions, réponses, état, validateur.

Quand : après boond_forms_create, ou depuis l'ID lu dans les relations d'une ressource / d'un candidat. Plutôt que : il n'existe pas de liste des formulaires côté API (GET /forms n'est pas documenté) ; boond_tasks_get avec entity: "form" pour ses tâches.

Returns : JSON du formulaire (attributs + relations). Lecture seule.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesIdentifiant unique de l'entité BoondManager (numérique)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.17.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint false. The description adds that it returns JSON with attributes and relations, which is behavioral context beyond annotations. 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 compact, front-loaded with purpose, and uses clear labels (Quand, Plutôt que, Returns). Every sentence adds value with no redundancy.

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 simple get-by-ID tool with full schema coverage and safety annotations, the description provides return structure, usage context, and alternatives. Nothing essential is missing.

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

Parameters3/5

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

Schema coverage is 100% with a description for 'id' ('Identifiant unique... numérique'). The tool description says 'par son ID' but adds no extra meaning beyond the schema, so the baseline 3 is appropriate.

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 states a specific verb ('Récupère'), a resource ('un formulaire'), and the content (questions, réponses, état, validateur). It differentiates from siblings by mentioning boond_forms_create as the source of the ID and boond_tasks_get for tasks, making its scope unmistakable.

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?

Explicit 'Quand' section tells when to use (after create or from relations) and a 'Plutôt que' section explaining no list endpoint exists and offering boond_tasks_get for tasks. This gives clear when/when-not/alternative guidance.

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