delete_event
Remove a specific calendar event using its unique event ID to manage Google Calendar entries programmatically via the Google Workspace MCP Server.
Instructions
Delete a calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
eventId | Yes | Event ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"eventId": {
"description": "Event ID to delete",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}