google_calendar_get_event
Retrieve detailed event information by specifying the event ID and optional calendar ID, enabling integration with Google Calendar through the Google MCP server.
Instructions
Get detailed information about a specific event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendarId | No | Optional: ID of calendar to use (defaults to primary if not specified) | |
eventId | Yes | ID of the event to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"calendarId": {
"description": "Optional: ID of calendar to use (defaults to primary if not specified)",
"type": "string"
},
"eventId": {
"description": "ID of the event to retrieve",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}