Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Créer un(e) projet

boond_projects_create

Create a new project in BoondManager with name, dates, client, and status. Use after searching to avoid duplicates, since each call adds a distinct record.

Instructions

Crée un(e) projet dans BoondManager.

Quand : pour ajouter un(e) projet inexistant(e). Plutôt que : boond_projects_update pour modifier un enregistrement existant, et boond_projects_search d'abord pour vérifier qu'il n'existe pas déjà.

  • Écriture réelle et non idempotente : deux appels identiques créent deux enregistrements (l'API ne déduplique pas).

  • Les ID de relations et les états/types sont des ID numériques BoondManager, à résoudre au préalable (recherches d'entités, boond://dictionary/*).

Returns : confirmation, ID créé, et la fiche complète. structuredContent.id est réutilisable directement pour chaîner un appel.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesNom du projet / mission
noteNoNotes / description du projet
stateNoÉtat du projet (0=en cours, 1=terminé, 2=archivé...)
typeOfNoType de projet (ID du dictionnaire setting.typeOf.project)
endDateNoDate de fin (YYYY-MM-DD)
companyIdNoID de la société cliente
contactIdNoID du contact associé
startDateNoDate de début (YYYY-MM-DD)
opportunityIdNoID de l'opportunité liée

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoIdentifiant de l'entité créée/modifiée
typeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changedv2.17.0
    • addedInput schema / properties / companyId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / contactId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / opportunityId / pattern
      Added value: +"^\\d+$"
  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.8.0
    • addedInput schema / properties / typeOf
      Added value: +{
      +  "description": "Type de projet (ID du dictionnaire setting.typeOf.project)",
      +  "maximum": 9007199254740991,
      +  "minimum": -9007199254740991,
      +  "type": "integer"
      +}
  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": {
      +    "id": {
      +      "description": "Identifiant de l'entité créée/modifiée",
      +      "type": "string"
      +    },
      +    "type": {
      +      "type": "string"
      +    }
      +  },
      +  "type": "object"
      +}
  5. First observedv2.1.0

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the annotations (idempotentHint=false), the description explicitly states 'Écriture réelle et non idempotente : deux appels identiques créent deux enregistrements (l'API ne déduplique pas).' It also discloses that relation IDs and states/types are numeric BoondManager IDs requiring resolution, and mentions the return confirmation and reusable structuredContent.id. These add significant behavioral context not present 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.

Conciseness5/5

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

The description is concise and well-structured with a clear lead sentence, a 'Quand' section, a 'Plutôt que' section, bullet points for key behaviors, and a return note. It is front-loaded with the core purpose and contains no redundant information.

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 9-parameter creation tool, the description covers the essential context: when to use it, alternatives, non-idempotency, ID resolution requirements, and what the response contains. Since an output schema exists, the description appropriately references structuredContent.id rather than detailing the full return shape. No critical information for correct invocation is missing.

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% (all 9 parameters have descriptions). The description adds a critical note that 'Les ID de relations et les états/types sont des ID numériques BoondManager, à résoudre au préalable,' which applies to parameters like state, typeOf, companyId, contactId, and opportunityId. This clarifies the nature of these values beyond the schema. It doesn't detail each parameter, but the schema already does, so a 4 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 clearly states 'Crée un(e) projet dans BoondManager' — a specific verb and resource. It distinguishes itself from siblings by explicitly naming boond_projects_update and boond_projects_search as alternatives, making the purpose unambiguous.

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 explicit when-to-use guidance: 'Quand : pour ajouter un(e) projet inexistant(e)' and when-not-to: 'Plutôt que : boond_projects_update pour modifier un enregistrement existant, et boond_projects_search d'abord pour vérifier qu'il n'existe pas déjà.' This fully addresses the decision of when to call this tool versus alternatives.

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