Schedule smarter - create, search, and manage Google Calendar events through AI.
A Model Context Protocol (MCP) server that exposes Google Calendar's API for creating, reading, updating, and deleting events and calendars.
The Google Calendar MCP Server provides full calendar management capabilities:
Perfect for:
{
"count": 2,
"events": [{ "id": "...", "summary": "Team Standup", ... }]
}output:
{
"message": "Event created successfully",
"event": { "id": "...", "summary": "Lunch", ... }
}{
"message": "Event updated successfully",
"event": { "id": "...", ... }
}output:
{
"message": "Recurring event created successfully",
"event": { "id": "...", "recurrence": ["RRULE:FREQ=WEEKLY;..."], ... }
}recurrence rules (RRULE):
daily: RRULE:FREQ=DAILY
Weekly Mon/Wed/Fri: RRULE:FREQ=WEEKLY;BYDAY=MO,WE,FR
Monthly on 15th: RRULE:FREQ=MONTHLY;BYMONTHDAY=15