calendar-get-event
Retrieve a specific calendar event by providing the event ID and optional calendar ID using the MCP Server Boilerplate integration.
Instructions
Get a specific calendar event by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendarId | No | Calendar ID - Available options: 'primary' (Primary Calendar) | primary |
eventId | Yes | Event ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"calendarId": {
"default": "primary",
"description": "Calendar ID - Available options: 'primary' (Primary Calendar)",
"type": "string"
},
"eventId": {
"description": "Event ID",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}