Skip to main content

Calendar Get Event

Snapshot Catalog Entry

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

POSTgoogle.calendar_get_event

Get a calendar event by ID.

Request Body

{
"jsonrpc": "2.0",
"id": "google-calendar-get-event-example",
"method": "tools/call",
"params": {
"name": "google.calendar_get_event",
"arguments": {
"calendar_id": "calendar_id_123",
"event_id": "event_id_123",
"fields": "fields_example"
}
}
}

Arguments Schema

{
"properties": {
"calendar_id": {
"type": "string"
},
"event_id": {
"type": "string"
},
"fields": {
"type": "string"
}
},
"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-get-event-example",
"method": "tools/call",
"params": {
"name": "google.calendar_get_event",
"arguments": {
"calendar_id": "calendar_id_123",
"event_id": "event_id_123",
"fields": "fields_example"
}
}
}'

Example Responses

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