Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ai-calendarmcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / cloud
Persistent memory using a knowledge graph
MCP Server for GCP environment for interacting with various Observability APIs.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for ai.calendarmcp/server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The hosted Google Calendar MCP server. Connect any AI agent to your Google Calendar in about two minutes. No self-hosting, no Docker, no
credentials.json.
CalendarMCP is a hosted Model Context Protocol (MCP) server for Google Calendar. Connect your Google account once, get an API key, and any MCP-compatible client (Claude Desktop, Claude Code, Claude.ai, Cursor, OpenClaw, Continue, Cline, Windsurf, Goose, Zed, ChatGPT custom GPTs, n8n, etc.) can read and write your calendar.
This repo is the public docs, manifest, and client examples for the service. The hosted service is not open source. If you want a self-hosted alternative, the most popular OSS option is nspady/google-calendar-mcp and we recommend it for users who want OAuth tokens to never leave their machine.
credentials.json, no Google Cloud Console, no Docker.batch_update_events updates up to 50 events in one concurrent call. Renaming a recurring meeting across a year is one prompt, not 50 clicks.Drop these into the right config file for your MCP client.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"calendar": {
"command": "npx",
"args": [
"@modelcontextprotocol/server-fetch",
"https://calendarmcp.ai/api/mcp"
],
"env": {
"MCP_AUTH_HEADER": "Authorization: Bearer YOUR_CALENDARMCP_API_KEY"
}
}
}
}
See examples/claude-desktop.json and our Claude Desktop integration guide.
claude mcp add calendar https://calendarmcp.ai/api/mcp \
--transport http \
--header "Authorization: Bearer YOUR_CALENDARMCP_API_KEY"
See examples/claude-code.sh and our Claude Code integration guide.
~/.cursor/mcp.json:
{
"mcpServers": {
"calendar": {
"url": "https://calendarmcp.ai/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_CALENDARMCP_API_KEY"
}
}
}
}
See examples/cursor.json and our Cursor integration guide.
In your openclaw.json:
{
"plugins": {
"entries": {
"mcp-calendarmcp": {
"enabled": true,
"config": {
"url": "https://calendarmcp.ai/api/mcp",
"authHeader": "Bearer YOUR_CALENDARMCP_API_KEY"
}
}
}
... [View full README on GitHub](https://github.com/full-vibe/calendarmcp-public#readme)