Google Calendar
live SaaSGoogle Calendar MCP Pack
Tools
gcal_list_events List events from a Google Calendar. Optionally filter by time range. Returns event summaries, times, attendees, and locations.
No parameters required.
Try it
gcal_get_event Get a specific Google Calendar event by ID. Returns full event details including summary, description, start/end times, attendees, location, and conferencing info.
No parameters required.
Try it
gcal_create_event Create a new event on a Google Calendar. Specify summary, start/end times, and optional description, location, and attendees.
No parameters required.
Try it
gcal_list_calendars List all calendars accessible by the authenticated user. Returns calendar IDs, summaries, time zones, and access roles.
No parameters required.
Try it
gcal_search_events Search for events across a calendar using a text query. Matches against event summary, description, location, and attendees.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/google_calendar/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/google_calendar/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"gcal_list_events","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("gcal_list_events", {}); // Or ask in plain English:
const answer = await px.ask("google calendar mcp pack");