Skip to main content
Glama
silamir

boondmanager-mcp-server

by silamir

Modifier une action

boond_actions_update
Idempotent

Update existing BoondManager actions partially while preserving calendar sync and linked relations. Modify title, dates, type, or notes without recreating the event.

Instructions

Met à jour une action existante dans BoondManager (PUT partiel, seuls les champs fournis sont modifiés).

Plutôt que : boond_actions_create si l'action n'existe pas encore.

⚠️ Aucune relation n'est envoyée : le rattachement (dependsOn), le positionnement et la synchronisation calendrier (event Outlook/Teams, invités) sont préservés. Idéal pour ajouter un compte-rendu sans casser l'agenda — contrairement à delete + recreate qui supprime l'événement. text remplace le contenu existant (pas d'ajout).

Returns: L'action mise à jour.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID de l'action à modifier
textNoNouveau contenu / notes (HTML accepté). Remplace l'existant (pas d'ajout).
titleNoNouveau titre de l'action
typeOfNoNouveau type : ID numérique du dictionnaire setting.action.* (via boond_application_dictionary)
endDateNoDate de fin (même format que startDate)
startDateNoDate de début au format ISO 8601 avec timezone (ex: 2026-06-05T10:00:00+0200)

Output Schema

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

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv2.17.0
    • removedInput schema / properties / id / minLength
      Removed value: -1
    • addedInput schema / properties / id / 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. Addedv2.7.0

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the annotations (readOnlyHint=false, destructiveHint=false, idempotentHint=true), the description adds important behavioral detail: only provided fields are modified, no relations are sent, existing dependsOn/positioning/calendar sync is preserved, and `text` replaces rather than appends. This is exactly the kind of non-obvious behavior an agent needs.

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 dense but efficient: main action, partial-PUT semantics, alternative, safety warning, use case, and return value, all in a compact, well-organized structure. Every sentence earns its place.

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 an update tool, the description is complete enough: it covers the operation type, the scope of changes, the behavioral guarantees about relations, the alternative to create, and the return value. The annotations and schema cover the rest.

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?

The input schema already documents all parameters with 100% coverage, so the description does not need to re-explain them. It adds value by stating that omitted relation fields are preserved and that `text` is a replacement operation, which gives the agent a clearer mental model of partial updates.

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 precise verb and resource: "Met à jour une action existante dans BoondManager" and clarifies the partial-PUT semantics. It also explicitly differentiates itself from `boond_actions_create`, making the boundary between update and create obvious.

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?

It directly tells the agent when not to use this tool: "Plutôt que : `boond_actions_create` si l'action n'existe pas encore." It also contrasts the update with delete + recreate, explaining that update is the safe path when preserving calendar/agenda data matters.

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