Google Calendar AI Agent MCP Server
Provides tools for managing Google Calendar events, including creating, updating, deleting, listing, searching events, finding free time slots, and handling recurring events, with conflict detection and natural language interaction.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Google Calendar AI Agent MCP ServerSchedule a 30-minute meeting with John next Tuesday at 2 PM."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Google Calendar AI Agent
A production-ready Google Calendar AI Agent built on the Agent + Driver architecture. The Agent reasons in natural language, delegates actions to modular Tools, and uses the Driver to communicate with the Google Calendar API. It is powered by the Groq API with tool calling execution loops and supports both SQLite and PostgreSQL backends.
Architecture Overview
calendar-agent/
│
├── agents/
│ ├── calendar_agent.py # Reasoning loop using Groq Llama-3.3 Function Calling
│ └── prompts.py # System instructions & few-shot patterns
│
├── drivers/
│ ├── google_calendar_driver.py # Communicates with official Google APIs & handles ICS
│ └── auth.py # Initiates OAuth 2.0 flow & stores tokens in DB
│
├── tools/
│ ├── base.py # Defines BaseTool exposing MCP-compliant metadata
│ ├── create_event.py # Create events with double booking conflict checks
│ ├── list_events.py # Lists upcoming events
│ ├── update_event.py # Modifies event values
│ ├── delete_event.py # Cancels events
│ ├── search_events.py # Text search & advanced post-filters
│ ├── free_time.py # Smart availability slot finder (24-hour day scans)
│ └── recurring.py # Formats recurrence rule strings
│
├── models/
│ └── schemas.py # Pydantic validation schemas
│
├── memory/
│ └── chat_memory.py # SQLite & PostgreSQL database adapter
│
├── tests/ # Test suite covering driver, agents, and conflicts
│ └── test_agent.py
│
├── config.py # Application configurations
├── main.py # FastAPI API router & interactive dashboard console
└── Dockerfile # Docker runtime setupRelated MCP server: Google Calendar MCP Server
Core Technologies
Python 3.12+
FastAPI & Uvicorn (REST Endpoints)
Google Calendar API (via official
google-api-python-client)Google OAuth 2.0 (with database token storage)
Pydantic v2 & Pydantic Settings
Groq API (
groqSDK withllama-3.3-70b-versatile)icalendar (ICS serialization)
SQLite (Local development database)
PostgreSQL (Production database, e.g., Neon Postgres)
Google Cloud Console Setup
To connect the application to the Google Calendar API, you must configure an OAuth Client ID:
Go to the Google Cloud Console.
Create or select a project.
Search for and enable the Google Calendar API.
Navigate to APIs & Services > OAuth consent screen:
Choose External user type.
Fill in app name, developer support email, and save.
In the Scopes step, add
.../auth/calendarand.../auth/calendar.events.In the Audience (or Test users) step, add your Gmail account as an approved tester.
Navigate to Credentials > Create Credentials > OAuth client ID:
Application Type: Web application.
Authorized redirect URIs: Add
http://localhost:8080/oauth2callback(and your production URL if hosting).Click Create and copy your Client ID and Client Secret.
Installation & Setup
Clone the repository:
git clone <repository_url> cd calendar-agentCreate and activate a virtual environment:
python3 -m venv .venv source .venv/bin/activateInstall dependencies:
pip install -r requirements.txtConfigure Environment Variables: Create a
.envfile in the root directory:GROQ_API_KEY="your-groq-api-key" GOOGLE_CLIENT_ID="your-google-oauth-client-id" GOOGLE_CLIENT_SECRET="your-google-oauth-client-secret" GOOGLE_REDIRECT_URI="http://localhost:8080/oauth2callback" DB_PATH="calendar_agent.db" DATABASE_URL=""(Note: Leave
DATABASE_URLempty to use local SQLite, or enter a Postgres connection string to connect to a PostgreSQL database).
Running Locally
To run the FastAPI server and UI dashboard locally:
python -m uvicorn main:app --host 0.0.0.0 --port 8080 --reloadOpen http://localhost:8080 in your web browser.
Click Connect Google Calendar to authenticate.
Sign in with your test Google Account and approve the permissions.
You will be redirected back to the dashboard, which will load your upcoming events and let you chat with the AI Agent!
Production Deployment on Render
This project is fully ready for deployment on Render (Free Tier):
Go to Render and create a new Web Service.
Connect your GitHub repository.
Select Docker as the Runtime (Render automatically detects your
Dockerfile).Set the Instance Type to Free.
Add the following Environment Variables:
GROQ_API_KEY=gsk_...GOOGLE_CLIENT_ID=...GOOGLE_CLIENT_SECRET=...DATABASE_URL=your-neon-postgres-connection-string(highly recommended to persist tokens across container restarts!)GOOGLE_REDIRECT_URI=https://<your-subdomain>.onrender.com/oauth2callbackOAUTHLIB_INSECURE_TRANSPORT=1
Click Create Web Service.
Add
https://<your-subdomain>.onrender.com/oauth2callbackto your Authorized redirect URIs in the Google Cloud Console.
Example Prompt Interactions
You can ask the agent natural language commands:
Scheduling:
"Schedule a meeting tomorrow at 3 PM for 45 minutes called 'Project Review' and invite test@gmail.com"
"Schedule gym every Monday at 7am"
Move/Reschedule:
"Move my 3 PM dentist appointment tomorrow to Friday at 1 PM"
List / Summarize:
"Summarise my schedule today"
"What's on my calendar next week?"
Availability:
"Am I free after 5 PM today?"
"Find a one-hour free slot tomorrow morning"
Add virtual meetings:
"Add a Google Meet link to my interview event tomorrow"
Conflict Resolution:
If a slot overlaps, the Agent will ask: "There is an overlap with 'Weekly Sync'. Would you like me to book it anyway or schedule it right after at 4 PM instead?"
API Endpoints
Calendar Management
GET /events: List events with optionaltime_minandtime_maxparameters.POST /events: Create an event.PATCH /events/{id}: Modify an existing event.DELETE /events/{id}: Delete an event.
AI & Analytics
POST /chat: Interact with the agent. Payload:{"message": "string", "session_id": "string"}.GET /summary: Returns a short AI-generated schedule summary of the day.GET /analytics: Computes statistics like meeting hours today, weekly workload, monthly meeting time, busiest weekdays, and workload overload alerts.
Model Context Protocol (MCP)
GET /mcp/tools: Exposes all agent tools in MCP format.POST /mcp/execute: Executes an MCP tool.
Contribution Guide
Ensure all code is typed and formatted using Ruff.
Run Ruff check:
ruff check .Run tests using
pytest:pytest tests/
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mahinhussain1201/AI-Calendar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server