Skip to main content
Schedule a new calendar event

Tool details

FieldValue
Namecalendar:create-event
GroupIntegrations

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "calendarId": {
      "type": "string",
      "description": "Calendar ID"
    },
    "summary": {
      "type": "string",
      "description": "Event title"
    },
    "description": {
      "type": "string",
      "description": "Event description"
    },
    "start": {
      "type": "object",
      "description": "Start time: {dateTime: 'RFC3339', timeZone: 'TZ'}"
    },
    "end": {
      "type": "object",
      "description": "End time: {dateTime: 'RFC3339', timeZone: 'TZ'}"
    },
    "attendees": {
      "type": "array",
      "description": "Array of {email: string} objects"
    },
    "location": {
      "type": "string",
      "description": "Event location"
    },
    "end_user_id": {
      "type": "string",
      "description": "End-user ID for per-user OAuth token resolution"
    }
  },
  "required": [
    "calendarId",
    "summary",
    "start",
    "end"
  ],
  "description": "Input schema for the calendar:create-event tool."
}

Output schema

This tool does not publish an output schema.