GoogleCalendarMCP
MCP server for interacting with Google Calendar, enabling reading events from public calendars and, with OAuth, creating, updating, and deleting events.
README
MCP Server Setup
The server.js file contains the implementation of the Google Calendar MCP server.
Note: The MCP configuration may vary depending on the editor or MCP client you are using. The following instructions are for Cursor.
Prerequisites
Before configuring the MCP server, ensure you have:
- Node.js installed
- Cursor Editor installed and signed in
- A Google Calendar API key
- Your Google Calendar ID
Setup in Cursor
- Open Cursor.
- Go to Settings.
- Navigate to Tools → MCP.
- Add a new MCP server using the following configuration:
{
"mcpServers": {
"filesystem": {
"command": "node",
"args": [
"PATH_TO_SERVER_JS"
],
"env": {
"GOOGLE_PUBLIC_API_KEY": "YOUR_GOOGLE_API_KEY",
"CALENDAR_ID": "YOUR_CALENDAR_ID"
}
}
}
}
Configuration
Replace the placeholders below with your own values:
- PATH_TO_SERVER_JS – Absolute path to the
server.jsfile. - YOUR_GOOGLE_API_KEY – Your Google Calendar API key.
- YOUR_CALENDAR_ID – Your Google Calendar ID (typically your Gmail address for your primary calendar).
After saving the configuration, restart Cursor (if required). Your MCP server will then be available for use.
Important Note
This project currently uses a Google Calendar API Key, which can only access public Google Calendars.
If your calendar is private, the server will not be able to retrieve event details such as the title, description, or attendees. To access private calendars or support creating, updating, and deleting events, you must replace the API key authentication with OAuth 2.0.
Current Features (API Key)
- Read events from public Google Calendars
- Retrieve events by date
- Read private calendars
- Create calendar events
- Update calendar events
- Delete calendar events
For full Google Calendar functionality, OAuth 2.0 authentication is recommended.
Resources
For a detailed guide on building custom MCP servers with TypeScript, check out the following article:
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.