Google Calendar AI Agent Server
FreeNot checkedEnables natural language interaction with Google Calendar through AI agent tools for scheduling, event management, and availability checking.
About
Enables natural language interaction with Google Calendar through AI agent tools for scheduling, event management, and availability checking.
README
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 setup
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 --reload
Open 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 [email protected]"
- "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/
Installing Google Calendar AI Agent Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/mahinhussain1201/AI-CalendarFAQ
Is Google Calendar AI Agent Server MCP free?
Yes, Google Calendar AI Agent Server MCP is free — one-click install via Unyly at no cost.
Does Google Calendar AI Agent Server need an API key?
No, Google Calendar AI Agent Server runs without API keys or environment variables.
Is Google Calendar AI Agent Server hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Google Calendar AI Agent Server in Claude Desktop, Claude Code or Cursor?
Open Google Calendar AI Agent Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Notion
Read and write pages in your workspace
by NotionLinear
Issues, cycles, triage — from Claude
by LinearGoogle Drive
Search and read your Drive files
by Googlemindsdb/mindsdb
Connect and unify data across various platforms and databases with [MindsDB as a single MCP server](https://docs.mindsdb.com/mcp/overview).
by mindsdbfulcradynamics/fulcra-context-mcp
MCP server for accessing personal health and biometric data including sleep stages, heart rate, HRV, glucose, workouts, calendar, and location via the Fulcra Li
by fulcradynamicsaymericzip/intlayer
A MCP Server that enhance your IDE with AI-powered assistance for Intlayer i18n / CMS tool: smart CLI access, access to the docs.
by aymericziprinadelph/Agent-MCP
A framework for creating multi-agent systems using MCP for coordinated AI collaboration, featuring task management, shared context, and RAG capabilities.
by rinadelphWhenLabs-org/when
Developer toolkit: auto-detect stack for AI context files, catch port conflicts, validate .env schemas, spot docs drift, audit dependency licenses, and time cod
by WhenLabs-orgBeltran12138/wecom-docs-mcp-server
WeCom (Enterprise WeChat) document operations via MCP: create, read, and edit Docs and Smartsheets (9 tools). Fills the doc-CRUD gap — existing WeCom MCP server
by Beltran12138madbonez/caldav-mcp
Universal MCP server for CalDAV protocol integration. Works with any CalDAV-compatible calendar server including Yandex Calendar, Google Calendar (via CalDAV),
by madbonezCompare Google Calendar AI Agent Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All productivity MCPs
