Google Calendar MCP Server
An MCP server that provides access to the Google Calendar API, allowing AI assistants to list and retrieve calendar items via OAuth 2.0 tokens.
README
Google Calendar MCP Server
An MCP (Model Context Protocol) server that provides access to the Google Calendar API, allowing AI assistants to interact with Google Calendar data.
Features
- List and retrieve items from the Google Calendar API
- Async HTTP client with error handling
- Typed responses with Pydantic models
Installation
Using mpak (Recommended)
# Configure your API key
mpak config set @JoeCardoso13/google-calendar access_token=your_oauth_token_here
# Run the server
mpak run @JoeCardoso13/google-calendar
Manual Installation
# Clone the repository
git clone https://github.com/NimbleBrainInc/mcp-google-calendar.git
cd mcp-google-calendar
# Install dependencies with uv
uv sync
# Set your OAuth access token
export GOOGLE_CALENDAR_ACCESS_TOKEN=your_oauth_token_here
# Run the server
uv run python -m mcp_google_calendar.server
Configuration
Getting Your Access Token
Google Calendar requires OAuth 2.0 access tokens (not API keys). The easiest way to get one for testing:
- Go to https://developers.google.com/oauthplayground/
- Select "Google Calendar API v3" and check the scopes you need
- Click "Authorize APIs" and sign in with your Google account
- Click "Exchange authorization code for tokens"
- Copy the access token (expires after 1 hour)
Claude Desktop Configuration
Add to your ~/.claude/settings.json:
{
"mcpServers": {
"google-calendar": {
"command": "mpak",
"args": ["run", "@JoeCardoso13/google-calendar"]
}
}
}
Available Tools
| Tool | Description |
|---|---|
list_items |
List items from the API with optional limit |
get_item |
Get a single item by its ID |
Development
# Install dev dependencies
uv sync --dev
# Run tests
uv run pytest tests/ -v
# Format code
uv run ruff format src/ tests/
# Lint
uv run ruff check src/ tests/
# Type check
uv run ty check src/
# Run all checks
make check
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.