Google Calendar AI Agent Server
БесплатноНе проверенEnables natural language interaction with Google Calendar through AI agent tools for scheduling, event management, and availability checking.
Описание
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/
Установка Google Calendar AI Agent Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/mahinhussain1201/AI-CalendarFAQ
Google Calendar AI Agent Server MCP бесплатный?
Да, Google Calendar AI Agent Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Google Calendar AI Agent Server?
Нет, Google Calendar AI Agent Server работает без API-ключей и переменных окружения.
Google Calendar AI Agent Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Google Calendar AI Agent Server в Claude Desktop, Claude Code или Cursor?
Открой Google Calendar AI Agent Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Notion
Read and write pages in your workspace
автор: NotionLinear
Issues, cycles, triage — from Claude
автор: LinearGoogle Drive
Search and read your Drive files
автор: Googlemindsdb/mindsdb
Connect and unify data across various platforms and databases with [MindsDB as a single MCP server](https://docs.mindsdb.com/mcp/overview).
автор: mindsdbCompare Google Calendar AI Agent Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории productivity
