Skip to main content

Calendar Delete Event

Snapshot Catalog Entry

This page is generated from broker tools/list snapshot data.

POSTgoogle.calendar_delete_event

Delete a calendar event.

Request Body

{
"jsonrpc": "2.0",
"id": "google-calendar-delete-event-example",
"method": "tools/call",
"params": {
"name": "google.calendar_delete_event",
"arguments": {
"calendar_id": "calendar_id_123",
"event_id": "event_id_123",
"send_updates": "send_updates_example",
"confirm": false
}
}
}

Arguments Schema

{
"properties": {
"calendar_id": {
"type": "string"
},
"event_id": {
"type": "string"
},
"send_updates": {
"type": "string"
},
"confirm": {
"type": "boolean"
}
},
"required": [
"calendar_id",
"event_id"
],
"type": "object"
}

Code Examples

curl -X POST 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "google-calendar-delete-event-example",
"method": "tools/call",
"params": {
"name": "google.calendar_delete_event",
"arguments": {
"calendar_id": "calendar_id_123",
"event_id": "event_id_123",
"send_updates": "send_updates_example",
"confirm": false
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool google.calendar_delete_event executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}