gcal-mcp-ldraney (0.1.1)
Published 2026-03-01 18:23:12 +00:00 by forgejo_admin
Installation
pip install --index-url gcal-mcp-ldraneyAbout this package
MCP server wrapping gcal-sdk for Google Calendar access
gcal-mcp
MCP server for Google Calendar, built on gcal-sdk.
Install
pip install gcal-mcp
Run
gcal-mcp
# or
python -m gcal_mcp
Claude Code config
Add to your .mcp.json:
{
"mcpServers": {
"calendar": {
"command": "gcal-mcp"
}
}
}
Prerequisites
Google OAuth credentials must be set up at ~/secrets/google-oauth/:
credentials.json-- OAuth client credentialstoken.json-- stored OAuth token
See the Google OAuth Setup Guide for details.
Available tools
Events
list_events-- List events from a calendarget_event-- Get a single event by IDcreate_event-- Create a new eventupdate_event-- Full update (PUT) of an eventpatch_event-- Partial update (PATCH) of an eventdelete_event-- Delete an eventmove_event-- Move an event to another calendarlist_event_instances-- List instances of a recurring event
Calendars
list_calendars-- List all calendarsget_calendar-- Get details about a calendarcreate_calendar-- Create a new secondary calendardelete_calendar-- Delete a secondary calendarclear_calendar-- Clear all events from a calendar
FreeBusy
query_freebusy-- Query free/busy info for calendars
Requirements
Requires Python: >=3.10