Skip to main content
Glama

Create a new event or task

create_event

Create an event or task for the authenticated user. title is required (1–200 characters). start and end are ISO 8601 date-time with offset, or YYYY-MM-DD for an all-day event in the event timezone. timezone is an IANA name (default UTC) and stays the event zone — it is not replaced by the user timezone. rrule is an iCalendar RRULE string. status is active, done, undone, or cancelled. type is event or task. location is a short place name. waitSync defaults to true and waits for the external calendar so the response can include links; false responds immediately and links may be absent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endNoISO 8601 date-time with offset, or YYYY-MM-DD for an all-day event in the event timezone
descNoDescription (up to 1000 characters)
typeNoevent is a timed item; task is a to-do without a duration
rruleNoiCalendar RRULE string for a repeating event
startNoISO 8601 date-time with offset, or YYYY-MM-DD for an all-day event in the event timezone
titleYesEvent or task title (1–200 characters)
allDayNoTrue when start and end are calendar dates without a time
statusNoEvent status: active, done, undone, or cancelled
locationNoShort place name
timezoneNoIANA timezone of the event; stored as-is, not replaced by the user timezone
waitSyncNoWait for the external calendar so the response can include links; default true
calendarIdNoCalendar that owns the event; omit for the default calendar

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesEvent id
endNoEnd in the user timezone (ISO 8601)
descNoDescription
typeNoevent is a timed item; task is a to-do without a duration
linksNoExternal calendar links when sync has finished
rruleNoiCalendar RRULE string when the event repeats
startNoStart in the user timezone (ISO 8601)
titleYesEvent or task title
allDayNoTrue when the event is a calendar date without a time
statusNoEvent status: active, done, undone, or cancelled
locationNoShort place name
timezoneNoIANA timezone stored on the event
createdAtNoWhen the event was created (ISO 8601)
updatedAtNoWhen the event was last changed (ISO 8601)
calendarIdNoCalendar that owns the event

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already indicate this is a write operation (readOnlyHint=false, destructiveHint=false). The description adds meaningful behavioral context: waitSync controls whether the response includes links, timezone is stored as-is rather than replaced by the user timezone, and all-day events use YYYY-MM-DD. These are non-obvious behaviors that help an agent predict side effects.

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 description is compact and front-loaded: the core purpose appears in the first sentence, followed by the most important constraints. It covers 12 parameters without becoming a wall of text, though a couple of details (e.g., status enum values) are also present in the schema and could be trimmed.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a create tool with 12 parameters and an output schema, the description covers the essential decision points: required field, date/time formats, timezone semantics, recurrence, status, type, and waitSync behavior. It does not explain return values, but the output schema exists, so that is not a gap. It could be more explicit about when to omit calendarId, but the schema already says 'omit for the default calendar'.

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 100%, so the schema already documents every parameter. The description adds value by clarifying the timezone behavior, the waitSync trade-off, and the all-day date format, which are semantic details beyond the schema's field-level descriptions.

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 states a specific verb ('Create') and resource ('event or task'), and immediately distinguishes the two item types. It also names the required field and key constraints, so an agent can tell this tool from siblings like update_event or set_event_status without opening the schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context for when to use the tool: creating an event or task for the authenticated user, with the required title and optional scheduling fields. It does not explicitly name alternatives or exclusions, but the sibling list and the create/update distinction make the usage context reasonably clear.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources