Google Calendar
liveSaaSProductivityList, search, create, and retrieve Google Calendar events and calendars via OAuth.
Tools
gcal_list_eventsList events from a Google Calendar. Optionally filter by time range. Returns event summaries, times, attendees, and locations.
No parameters required.
Try it
gcal_get_eventGet 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_eventCreate 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_calendarsList all calendars accessible by the authenticated user. Returns calendar IDs, summaries, time zones, and access roles.
No parameters required.
Try it
gcal_search_eventsSearch 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("list, search, create, and retrieve google calendar events and calendars via oauth");