Skip to main content

Calendar Batch Get Events

Snapshot Catalog Entry

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

POSTgoogle.calendar_batch_get_events

Fetch multiple calendar events by ID in a single tool call.

Request Body

{
"jsonrpc": "2.0",
"id": "google-calendar-batch-get-events-example",
"method": "tools/call",
"params": {
"name": "google.calendar_batch_get_events",
"arguments": {
"calendar_id": "calendar_id_123",
"event_ids": [],
"fields": "fields_example"
}
}
}

Arguments Schema

{
"properties": {
"calendar_id": {
"type": "string"
},
"event_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"fields": {
"type": "string"
}
},
"required": [
"calendar_id",
"event_ids"
],
"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-batch-get-events-example",
"method": "tools/call",
"params": {
"name": "google.calendar_batch_get_events",
"arguments": {
"calendar_id": "calendar_id_123",
"event_ids": [],
"fields": "fields_example"
}
}
}'

Example Responses

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