logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

GoogleCalendarMCP

Manage Google Calendar events by creating and customizing event details including time, location, and attendees. Streamline scheduling processes and integrate calendar functionalities into applications.

Author

GoogleCalendarMCP logo

ITworkonline

No License

Quick Info

GitHub GitHub Stars 1
NPM Weekly Downloads 0
Tools 1
Last Updated 2026-02-19

Tags

googlecalendarmcpcalendarscalendaritworkonline googlecalendarmcpgooglecalendarmcp managecalendars itworkonline

GoogleCalendarMCP

A Model Completion Prompt (MCP) plugin for interacting with Google Calendar.

Features

  • Create events in Google Calendar with customizable:
  • Start and end times
  • Description
  • Location
  • Attendees
  • Timezone

Installation

  1. Clone this repository:
git clone https://github.com/ITworkonline/GoogleCalendarMCP.git
cd GoogleCalendarMCP
  1. Create a virtual environment and install dependencies:
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
pip install -e .
  1. Set up Google Calendar API:
  2. Go to the Google Cloud Console
  3. Create a new project
  4. Enable the Google Calendar API
  5. Create OAuth 2.0 credentials (Desktop app)
  6. Download the credentials JSON file and save it as credentials.json in the project root

Usage

from GoogleCalendarMCP.main import create_event

# Create a calendar event
result = await create_event(
    summary="Meeting with Team",
    start_time="2025-04-01T10:00:00",
    end_time="2025-04-01T11:00:00",
    description="Discuss project progress",
    location="Conference Room 3",
    attendees=["colleague@example.com"],
    timezone="America/New_York"
)

Authentication

The first time you run the program, it will open a browser window for you to authenticate with your Google account. After authentication, a token.json file will be created to store your credentials for subsequent runs.

License

MIT

See Also

`