Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Créer une action

boond_actions_create

Create a new action (call, email, meeting, or note) in BoondManager, attached to a contact, candidate, resource, opportunity, or project. Use update for existing actions to avoid duplicates.

Instructions

Crée une nouvelle action (appel, email, RDV, note) dans BoondManager, rattachée à un contact, candidat, ressource, opportunité ou projet (relation dependsOn, obligatoire).

Plutôt que : boond_actions_update pour compléter une action déjà enregistrée plutôt que d'en créer un doublon.

Exactement une entité de rattachement parmi contactId / candidateId / resourceId / opportunityId / projectId est requise (422 sinon) ; companyId n'est accepté qu'en complément d'un contactId, et positioningId est exigé par l'API pour les types d'action liés aux positionnements (ex. RQ).

Returns: L'action créée avec son ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textNoContenu / notes de l'action
titleNoTitre de l'action
typeOfYesType d'action : ID numérique du dictionnaire (setting.action.*, via boond_application_dictionary) ou libellé personnalisé si BOOND_DICTIONARY_OVERRIDES est configuré
endDateNoDate de fin (même format que startDate)
companyIdNoID de la société associée (uniquement en complément d'un contactId)
contactIdNoID du contact auquel rattacher l'action (dependsOn)
projectIdNoID du projet auquel rattacher l'action (dependsOn)
startDateNoDate de début au format ISO 8601 avec timezone (ex: 2026-06-05T10:00:00+0200)
resourceIdNoID de la ressource à laquelle rattacher l'action (dependsOn)
candidateIdNoID du candidat auquel rattacher l'action (dependsOn)
opportunityIdNoID de l'opportunité à laquelle rattacher l'action (dependsOn)
positioningIdNoID du positionnement à lier à l'action (relation positioning). Requis par l'API pour les types d'action liés aux positionnements (ex. RQ) — sans lui, erreur 422 « 1002 - Wrong or missing attribute (/data/relationships/positioning) ».

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed7 schema fields changedv2.17.0
    • addedInput schema / properties / candidateId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / companyId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / contactId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / opportunityId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / positioningId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / projectId / pattern
      Added value: +"^\\d+$"
    • addedInput schema / properties / resourceId / pattern
      Added value: +"^\\d+$"
  2. Changed1 schema field changedv2.12.2
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
  3. Changed9 schema fields changedv2.7.0
    • addedInput schema / properties / endDate / pattern
      Added value: +"^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?([+-]\\d{2}:?\\d{2}|Z)?$"
    • addedInput schema / properties / positioningId
      Added value: +{
      +  "description": "ID du positionnement à lier à l'action (relation positioning). Requis par l'API pour les types d'action liés aux positionnements (ex. RQ) — sans lui, erreur 422 « 1002 - Wrong or missing attribute (/data/relationships/positioning) ».",
      +  "type": "string"
      +}
    • changedInput schema / properties / startDate / description
      Previous value: -"Date de début au format ISO avec timezone (ex: 2026-06-05T10:00:00+0200)"New value: +"Date de début au format ISO 8601 avec timezone (ex: 2026-06-05T10:00:00+0200)"
    • addedInput schema / properties / startDate / pattern
      Added value: +"^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?([+-]\\d{2}:?\\d{2}|Z)?$"
    • addedInput schema / properties / typeOf / anyOf
      Added value: +[
      +  {
      +    "maximum": 9007199254740991,
      +    "minimum": 0,
      +    "type": "integer"
      +  },
      +  {
      +    "minLength": 1,
      +    "type": "string"
      +  }
      +]
    • changedInput schema / properties / typeOf / description
      Previous value: -"Type d'action : ID numérique du dictionnaire BoondManager (setting.action.*, via boond_application_dictionary)"New value: +"Type d'action : ID numérique du dictionnaire (setting.action.*, via boond_application_dictionary) ou libellé personnalisé si BOOND_DICTIONARY_OVERRIDES est configuré"
    • removedInput schema / properties / typeOf / maximum
      Removed value: -9007199254740991
    • removedInput schema / properties / typeOf / minimum
      Removed value: -0
    • removedInput schema / properties / typeOf / type
      Removed value: -"integer"
  4. Changed17 schema fields changedv2.2.0
    • changedInput schema / properties / candidateId / description
      Previous value: -"ID du candidat associé"New value: +"ID du candidat auquel rattacher l'action (dependsOn)"
    • changedInput schema / properties / companyId / description
      Previous value: -"ID de la société associée"New value: +"ID de la société associée (uniquement en complément d'un contactId)"
    • changedInput schema / properties / contactId / description
      Previous value: -"ID du contact associé"New value: +"ID du contact auquel rattacher l'action (dependsOn)"
    • removedInput schema / properties / content
      Removed value: -{
      -  "description": "Contenu / description",
      -  "type": "string"
      -}
    • changedInput schema / properties / endDate / description
      Previous value: -"Date de fin"New value: +"Date de fin (même format que startDate)"
    • addedInput schema / properties / opportunityId
      Added value: +{
      +  "description": "ID de l'opportunité à laquelle rattacher l'action (dependsOn)",
      +  "type": "string"
      +}
    • addedInput schema / properties / projectId
      Added value: +{
      +  "description": "ID du projet auquel rattacher l'action (dependsOn)",
      +  "type": "string"
      +}
    • changedInput schema / properties / resourceId / description
      Previous value: -"ID de la ressource associée"New value: +"ID de la ressource à laquelle rattacher l'action (dependsOn)"
    • changedInput schema / properties / startDate / description
      Previous value: -"Date de début (YYYY-MM-DD ou ISO)"New value: +"Date de début au format ISO avec timezone (ex: 2026-06-05T10:00:00+0200)"
    • removedInput schema / properties / subject
      Removed value: -{
      -  "description": "Sujet de l'action",
      -  "type": "string"
      -}
    • addedInput schema / properties / text
      Added value: +{
      +  "description": "Contenu / notes de l'action",
      +  "type": "string"
      +}
    • addedInput schema / properties / title
      Added value: +{
      +  "description": "Titre de l'action",
      +  "type": "string"
      +}
    • changedInput schema / properties / typeOf / description
      Previous value: -"Type d'action (ex: call, email, meeting, note)"New value: +"Type d'action : ID numérique du dictionnaire BoondManager (setting.action.*, via boond_application_dictionary)"
    • addedInput schema / properties / typeOf / maximum
      Added value: +9007199254740991
    • removedInput schema / properties / typeOf / minLength
      Removed value: -1
    • addedInput schema / properties / typeOf / minimum
      Added value: +0
    • changedInput schema / properties / typeOf / type
      Previous value: -"string"New value: +"integer"
  5. 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 already declare readOnlyHint=false, so the write nature is structured data; the description adds genuine context beyond that: the mandatory dependsOn attachment, the 422 failure on missing/invalid attachment, companyId's conditional acceptance, and the API-required positioningId tied to positioning-related action types. It discloses error conditions not visible elsewhere, though it stops short of describing auth needs or side effects like counts.

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?

Four short, dense sentences, each earning its place: purpose, routing, constraint set, return. The most important scoping information is front-loaded and the constraint sentence packs the validation rules efficiently with no filler.

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 12-parameter creation tool with intricate mutual-exclusivity and conditional-requirement logic and no output schema, this description is complete: it covers the entity types, the update alternative, validation failure modes, positional requirements, and the return value (created action with ID). An agent has everything needed to call it correctly.

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 baseline is 3, but the description adds real relational meaning beyond the schema: it ties the five ID params to the dependsOn relation, states the mutual-exclusivity rule among them, clarifies that companyId is only a complement to contactId, and explains positioningId's API requirement with the exact 422 code. This is genuinely additive semantic information about parameter relationships.

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+resource ('Crée une nouvelle action … dans BoondManager') and enumerates the valid parent entities (contact, candidat, ressource, opportunité, projet). It explicitly names the sibling boond_actions_update, so an agent can distinguish create from update/delete without opening a schema.

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 explicitly routes the agent: 'Plutôt que : boond_actions_update pour compléter une action déjà enregistrée plutôt que d'en créer un doublon.' It names the alternative tool and the exact condition that should select it, plus documents hard constraints (mutual exclusivity, 422 failure). Nothing is left to inference.

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