google-calendar-mcp
Enables reading Google Calendar events for a specific date using the getMyCalendarDataByDate tool.
README
sk-mcp-server-google-calendar
A lightweight Model Context Protocol (MCP) server for reading Google Calendar events by date. This package is intended to be published to npm and run through an MCP client with npx.
What it does
This server exposes one tool:
getMyCalendarDataByDate- fetches calendar events and meetings for a specific date
It returns matching events as simple text entries in the form:
Meeting title at 2026-06-16T11:30:00Z
Requirements
- Node.js 18 or newer
- A Google Calendar API key
- A Google Calendar ID
Installation
npm install
If you want to test the published package directly, you can run it with:
npx -y sk-mcp-server-google-calendar
Environment Variables
Create a .env file in the project root with:
GOOGLE_PUBLIC_API_KEY=your_google_api_key
CALENDAR_ID=your_calendar_id
Running the server
Start the MCP server with:
npm start
Or run the executable directly:
node server.js
If installed globally or linked as a package bin, the command is:
google-calendar-mcp
MCP Tool
getMyCalendarDataByDate
Retrieves Google Calendar events for a given date.
Input
date- a valid date string, such as2026-06-16
Output
Returns JSON text with either:
meetings: an array of event stringserror: an error message if the request fails
Example MCP Client Configuration
If you are connecting this server from an MCP client after publishing it to npm, use the package name as the command target.
Example:
{
"mcpServers": {
"My Calendar": {
"command": "npx",
"args": [
"-y",
"sk-mcp-server-google-calendar"
],
"env": {
"GOOGLE_PUBLIC_API_KEY": "your_google_api_key",
"CALENDAR_ID": "your_calendar_id"
}
}
}
}
Notes
- Event lookup is performed using UTC day boundaries.
- The tool returns up to 10 events for the requested date.
- The server uses standard input/output transport for MCP compatibility.
License
ISC
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.