Skip to main content
Glama

add_event

Create calendar events with optional recurrence, all-day spans, locations, notes, and tracked occurrences in a chosen agenda.

Instructions

ÉCRITURE : uniquement sur demande explicite de Denis. Ne jamais appeler de sa propre initiative, ni pour « aider », ni pour corriger. Renvoie l'objet résultant au format unifié. Crée un événement. start/end : format « AAAA-MM-JJ HH:MM » en heure locale Europe/Paris ; avec all_day=true, « AAAA-MM-JJ » du premier et du dernier jour (inclus). container : nom de l'agenda (défaut : agenda principal). recurrence : règle RRULE sans le préfixe, start/end donnant la première occurrence (ex. FREQ=WEEKLY;BYDAY=WE, FREQ=MONTHLY;BYMONTHDAY=1, FREQ=WEEKLY;BYDAY=MO,FR;COUNT=8). tracked=true (récurrence seulement) pose « [suivi] » : chaque occurrence est une chose à faire et remonte en retard si elle n'est pas marquée faite.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endYes
notesNo
startYes
titleYes
all_dayNo
trackedNo
locationNo
containerNo
recurrenceNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=false, openWorldHint=true, destructiveHint=false, so the write/safety profile is covered. The description goes well beyond that: it specifies the unified return object, Europe/Paris local-time semantics, all-day inclusion rules, the container default, RRULE prefix conventions, and the concrete consequence of tracked=true (occurrences behave as tasks and go overdue).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

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

The critical constraint is front-loaded before any format detail, which is exactly right. It is dense but nearly every clause carries operational meaning; only the explicit 'Renvoie l'objet résultant au format unifié' is weakly redundant given an output schema exists.

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 mutation tool with an output schema and rich annotations, the description covers the non-obvious surface: timezone, all-day range semantics, recurrence format, and tracked behavior. Return values need no explanation since an output schema is present.

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 description coverage is 0%, so the description must carry the load, and it does for the hard parameters: start/end format, all_day boundary semantics, container default, recurrence RRULE shape with examples, and tracked behavior. title, notes, and location are left to inference, but they are self-evident, so this is a minor gap rather than a real one.

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 names a specific verb and resource ('Crée un événement') and adds scope-relevant detail that separates it from siblings like update_event or add_task. Nothing about the intent is ambiguous, and the leading French warning makes the tool's identity and gating 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?

Explicitly states when to use it and when not to: only on Denis's explicit request, never on the agent's own initiative, not even to 'help' or 'correct'. This is a rare case of a tool giving a hard behavioral gate with the exclusion condition spelled out.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.