Skip to main content
Glama

create-event

Create a calendar event in Outlook, with optional attendees for an online meeting link and automatic invitations, returning the event ID and webLink.

Instructions

Create a new calendar event on the signed-in user's default calendar. Returns the created event with its id, webLink, and (if attendees are present) an auto-generated online-meeting URL — attendees receive invitations on save. Times use the configured timezone (default Australia/Melbourne; override with OUTLOOK_DEFAULT_TIMEZONE); omit the Z suffix to send local time. Use manage-event action=update to modify an event after creation, or manage-event action=cancel/delete to remove it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endYesThe end time of the event in ISO 8601 format
bodyNoOptional body content for the event
startYesThe start time of the event in ISO 8601 format
subjectYesThe subject of the event
attendeesNoList of attendee email addresses

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv3.7.4
    • addedInput schema / additionalProperties
      Added value: +false
  2. First observedv3.4.1

TDQS

A4.8/5.0
Behavior5/5

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

Annotations indicate readOnlyHint=false and destructiveHint=false, but the description adds side-effect details: attendees receive invitations, returns id/webLink/meeting URL, and timezone behavior ('Times use the configured timezone... omit the `Z` suffix to send local time'). This goes well beyond annotations.

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 information-dense but well-organized: purpose, return values, timezone, and alternatives. It is not overly verbose and front-loads the core action.

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?

With no output schema, the description compensates by explaining return values (id, webLink, meeting URL). It also covers timezone nuances and lifecycle management via manage-event, making it complete for a creation tool.

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%, providing baseline 3. The description adds meaningful context not in the schema, such as the timezone default and the auto-generated meeting URL when attendees are present, enhancing parameter understanding.

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 and resource: 'Create a new calendar event on the signed-in user's default calendar.' It clearly distinguishes from siblings by explicitly referencing `manage-event` for updates and deletions.

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 tells when to use the tool (to create a new event) and provides explicit alternatives: 'Use `manage-event` action=`update` to modify an event after creation, or `manage-event` action=`cancel`/`delete` to remove it.' This is clear when-to-use versus alternative guidance.

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