Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Créer un(e) opportunité

boond_opportunities_create

Create a new opportunity in BoondManager for records that don't exist yet. Provide name, dates, client, and manager IDs to add the opportunity.

Instructions

Crée un(e) opportunité dans BoondManager.

Quand : pour ajouter un(e) opportunité inexistant(e). Plutôt que : boond_opportunities_update pour modifier un enregistrement existant, et boond_opportunities_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 / titre de l'opportunité
noteNoDescription de l'opportunité (mappée sur /data/attributes/description)
stateNoÉtat de l'opportunité
poleIdNoID du pôle (relation pole)
typeOfNoType d'opportunité : ID numérique du dictionnaire setting.typeOf.project (ex: 1, 3), via boond_application_dictionary
endDateNoDate de fin prévue (YYYY-MM-DD)
agencyIdNoID de l'agence (relation agency)
criteriaNoCritères / compétences recherchées (texte libre). Alimente le matching de boond_workflow_candidats_pour_opportunite.
companyIdNoID de la société cliente (relation company)
contactIdNoID du contact associé (relation contact)
startDateNoDate de début prévue (YYYY-MM-DD ou 'immediate')
hrManagerIdNoID de la ressource responsable RH (relation hrManager)
expertiseAreaNoDomaine d'expertise : ID du dictionnaire setting.expertiseArea (via boond_application_dictionary)
mainManagerIdNoID de la ressource responsable principal / commercial (relation mainManager)
turnoverEstimatedExcludingTaxNoChiffre d'affaires estimé HT (montant)

Output Schema

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

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changedv2.17.0
    • addedInput schema / properties / agencyId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / companyId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / contactId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / hrManagerId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / mainManagerId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / poleId / 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. Changed14 schema fields changedv2.7.0
    • addedInput schema / properties / agencyId
      Added value: +{
      +  "description": "ID de l'agence (relation agency)",
      +  "type": "string"
      +}
    • changedInput schema / properties / companyId / description
      Previous value: -"ID de la société cliente"New value: +"ID de la société cliente (relation company)"
    • changedInput schema / properties / contactId / description
      Previous value: -"ID du contact associé"New value: +"ID du contact associé (relation contact)"
    • addedInput schema / properties / criteria
      Added value: +{
      +  "description": "Critères / compétences recherchées (texte libre). Alimente le matching de boond_workflow_candidats_pour_opportunite.",
      +  "maxLength": 5000,
      +  "type": "string"
      +}
    • addedInput schema / properties / expertiseArea
      Added value: +{
      +  "description": "Domaine d'expertise : ID du dictionnaire setting.expertiseArea (via boond_application_dictionary)",
      +  "type": "string"
      +}
    • addedInput schema / properties / hrManagerId
      Added value: +{
      +  "description": "ID de la ressource responsable RH (relation hrManager)",
      +  "type": "string"
      +}
    • addedInput schema / properties / mainManagerId
      Added value: +{
      +  "description": "ID de la ressource responsable principal / commercial (relation mainManager)",
      +  "type": "string"
      +}
    • changedInput schema / properties / note / description
      Previous value: -"Notes / description"New value: +"Description de l'opportunité (mappée sur /data/attributes/description)"
    • addedInput schema / properties / note / maxLength
      Added value: +65000
    • addedInput schema / properties / poleId
      Added value: +{
      +  "description": "ID du pôle (relation pole)",
      +  "type": "string"
      +}
    • changedInput schema / properties / startDate / description
      Previous value: -"Date de début prévue (YYYY-MM-DD)"New value: +"Date de début prévue (YYYY-MM-DD ou 'immediate')"
    • addedInput schema / properties / turnoverEstimatedExcludingTax
      Added value: +{
      +  "description": "Chiffre d'affaires estimé HT (montant)",
      +  "type": "number"
      +}
    • addedInput schema / properties / typeOf
      Added value: +{
      +  "description": "Type d'opportunité : ID numérique du dictionnaire setting.typeOf.project (ex: 1, 3), via boond_application_dictionary",
      +  "maximum": 9007199254740991,
      +  "minimum": 1,
      +  "type": "integer"
      +}
    • 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"
      +}
  4. First observedv2.1.0

TDQS

A4.7/5.0
Behavior4/5

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

Annotations are all false (readOnlyHint, idempotentHint, etc.), so the description carries the full burden. It discloses non-idempotency explicitly ('deux appels identiques créent deux enregistrements'), and the requirement to resolve numeric IDs beforehand. This goes beyond the annotations, but it does not mention potential side effects like workflow triggers or error behavior, which would make it more complete.

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 well-structured with 'Quand', 'Plutôt que', bullet points, and 'Returns'. It is front-loaded with the core purpose, then provides usage distinctions, behavioral notes, and return details. Every sentence contributes value; no filler or 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?

Given the tool's complexity (15 parameters, 1 required) and the presence of an output schema, the description covers all essential aspects: when to use, how to distinguish from siblings, non-idempotency, ID resolution prerequisites, and what the return value provides (including a usable ID for chaining). Nothing an agent needs to call correctly 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%, so each parameter is described. The description adds a crucial note that relation IDs and state/type are numeric BoondManager IDs that must be resolved beforehand (via dictionary). This directly enhances understanding of many parameters (e.g., poleId, companyId, state) beyond the generic 'ID du pôle' descriptions. It does not cover all parameters but adds meaningful context.

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 explicitly states the verb and resource: 'Crée un(e) opportunité dans BoondManager.' It differentiates from siblings by naming `boond_opportunities_update` and `boond_opportunities_search` and specifying the exact conditions for their use, making the tool's role 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?

Provides explicit when-to-use guidance ('pour ajouter un(e) opportunité inexistant(e)') and when-not-to-use guidance (use update for existing records, search first to verify non-existence). This is a clear directive that leaves no ambiguity about the tool's intended invocation context.

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