- Google Calendar
Google Calendar
what is Google Calendar MCP?
Google Calendar MCP is a Model Context Protocol (MCP) server implementation that integrates Google Calendar with Claude Desktop, allowing users to manage their calendar events seamlessly.
how to use Google Calendar MCP?
To use Google Calendar MCP, you need to create a Google Cloud Project, enable the Google Calendar API, configure OAuth2 credentials, and set up the server using the provided command.
key features of Google Calendar MCP?
- Manage Google Calendar events (get, create, update, delete)
- OAuth2 authentication with Google Calendar API
- Integration with Claude Desktop via MCP SDK
- Automatic browser opening for authorization
- In-memory token management for enhanced security
use cases of Google Calendar MCP?
- Automating event creation and updates in Google Calendar.
- Integrating calendar functionalities into desktop applications.
- Streamlining event management for users of Claude Desktop.
FAQ from Google Calendar MCP?
- How do I set up Google Calendar MCP?
Follow the installation instructions to create a Google Cloud Project, configure OAuth2 credentials, and run the server.
- Is there any data stored on disk?
No, the server uses in-memory token management, ensuring that sensitive data is not stored on disk.
- What should I do if I encounter errors?
Check the logs in your home directory and ensure your OAuth credentials are correctly configured.
Server Config
{
"mcpServers": {
"google-calendar": {
"command": "npx",
"args": [
"-y",
"@takumi0706/google-calendar-mcp"
],
"env": {
"GOOGLE_CLIENT_ID": "your_client_id",
"GOOGLE_CLIENT_SECRET": "your_client_secret",
"GOOGLE_REDIRECT_URI": "http://localhost:3000/oauth2callback"
}
}
}
}