Google Calendar MCP Server — Hosted Team Tools Integration
MCP Server language Hosted language PublicCreate events, check availability, and manage calendars across Google Calendar — automate your scheduling.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"google-calendar": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-google-calendar",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the list_calendars tool to list all calendars for the authenticated user”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
description Overview
mcp-google-calendar — Google Calendar MCP Server
Create, update, and query Google Calendar events through natural language.
Google Calendar is the scheduling backbone for millions of teams and individuals. This MCP server gives your AI agents full access to create, list, update, and delete calendar events — enabling scheduling automation, meeting summaries, and calendar management without opening Google Calendar. The quick_add tool even parses natural language like "Lunch with Bob at noon tomorrow" into a properly structured event.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-google-calendar
What You Can Do
- Schedule meetings and create calendar events from natural language input without manually filling out forms
- List upcoming events for a date range to give an AI agent awareness of your schedule when planning tasks
- Update or delete events in response to changes — useful for automated scheduling workflows that react to external triggers
- Use quick_add to create events from plain text, letting users say "team standup every weekday at 9am" and get it on the calendar
Available Tools
| Tool | Description |
|---|---|
list_calendars |
List all calendars for the authenticated user |
list_events |
List events in a calendar with optional time range filter |
get_event |
Get details of a specific event by ID |
create_event |
Create a new calendar event with attendees and timezone support |
update_event |
Update an existing event (partial patch) |
delete_event |
Delete a calendar event |
quick_add |
Quick-add an event from natural language text |
Configuration
| Variable | Required | Description | How to Get |
|---|---|---|---|
GOOGLE_ACCESS_TOKEN |
Yes | Google OAuth2 access token with Calendar scope | Google Cloud Console → APIs & Services → Credentials → OAuth 2.0 → generate token with https://www.googleapis.com/auth/calendar scope. Use OAuth Playground at developers.google.com/oauthplayground for quick testing. |
Quick Start
Add to Aerostack Workspace
- Go to aerostack.dev → Your Project → MCPs
- Search for "Google Calendar" and click Add to Workspace
- Add your
GOOGLE_ACCESS_TOKENunder Project → Secrets
Once added, every AI agent in your workspace can call Google Calendar tools automatically — no per-user setup needed.
Example Prompts
"What meetings do I have tomorrow between 9am and 5pm Pacific?"
"Schedule a 30-minute product review for next Monday at 2pm with alice@company.com and bob@company.com"
"Cancel all events on my calendar tagged as Optional for this Friday"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-google-calendar \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-GOOGLE-ACCESS-TOKEN: your-oauth-token' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_calendars","arguments":{}}}'
License
MIT
terminal Tools (7)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
list_calendars #1 List all calendars for the authenticated user
list_events #2 List events in a calendar within an optional time range
get_event #3 Get details of a specific calendar event
create_event #4 Create a new calendar event
update_event #5 Update an existing calendar event (partial update)
delete_event #6 Delete a calendar event
quick_add #7 Quick-add an event using natural language text (e.g. "Lunch with Bob at noon tomorrow")
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-google-calendar
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in Team Tools
Browse Team Tools MCPs →Discord
by @aerostack
Read and send Discord messages, manage channels, roles, and members — automate your community from AI agents.
Jira
by @aerostack
Create, search, update issues, manage sprints, boards, and projects in Jira — AI-native agile project management.
Slack
by @aerostack
Send messages, search conversations, and manage channels in Slack — connect AI agents to your team workspace.
Trello
by @aerostack
Manage Trello boards, lists, cards, and members — create, update, move cards and collaborate with AI.
Jira Cloud
by @aerostack
Full Jira Cloud integration — manage projects, issues, sprints, boards, comments, transitions, and user assignments for agile project management.
Frequently asked questions
What is the Google Calendar MCP server and what can it do? +
The Google Calendar MCP server is hosted on Aerostack and exposes these tools to your AI agent: `list_calendars`, `list_events`, `get_event`, `create_event`, `update_event`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.
Is the Google Calendar MCP server hosted, or do I have to run it myself? +
It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.
Which AI agents and editors can use the Google Calendar MCP server? +
Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Google Calendar MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.
How do I install the Google Calendar MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-google-calendar": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-google-calendar"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Google Calendar MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-google-calendar", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-google-calendar"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Google Calendar MCP require authentication? +
Yes. Google Calendar requires authentication. Check the MCP's documentation for the required credentials.