This server allows you to read Google Calendar events for a specific date via a single MCP tool.
Retrieve calendar events by date: Use the
getMyCalendarDataByDatetool to fetch meetings and events for any given date (e.g.,2026-06-16)Get up to 10 events per query: Returns a maximum of 10 events for the requested date, using UTC day boundaries for consistent lookups
Structured output: Results are returned as either a
meetingsarray (with event strings in the formatMeeting title at <ISO timestamp>) or anerrormessage if the request failsSimple integration: Communicates over stdio, making it easy to plug into any MCP-compatible client (e.g., via
npx)Configuration: Requires a Google Calendar API key and Calendar ID set via environment variables
Provides tools to fetch Google Calendar events for a specific date, returning event titles and timestamps.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@google-calendar-mcpshow me my events for tomorrow"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: Google Calendar MCP Server
Requirements
Node.js 18 or newer
A Google Calendar API key
A Google Calendar ID
Installation
npm installIf you want to test the published package directly, you can run it with:
npx -y sk-mcp-server-google-calendarEnvironment Variables
Create a .env file in the project root with:
GOOGLE_PUBLIC_API_KEY=your_google_api_key
CALENDAR_ID=your_calendar_idRunning the server
Start the MCP server with:
npm startOr run the executable directly:
node server.jsIf installed globally or linked as a package bin, the command is:
google-calendar-mcpMCP 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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/QA-Shivam/google-calendar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
