Skip to main content
Glama

Google Calendar MCP Server

by am2rican5
model.ts947 B
import type { calendar_v3 } from "googleapis"; // Google Calendar API Types export type GoogleCalendarList = calendar_v3.Schema$CalendarList; export type GoogleCalendar = calendar_v3.Schema$CalendarListEntry; export type GoogleCalendarEventList = calendar_v3.Schema$Events; export type GoogleCalendarEvent = calendar_v3.Schema$Event; // Application Domain Types export interface CalendarEvent { summary: string; description: string; start: string; // Format: YYYY-MM-DD end: string; // Format: YYYY-MM-DD anyoneCanAddSelf?: boolean; colorId?: string; } // Tool Response Types export interface ToolResponse<T> { content: Array<{ type: string; text: string; }>; data?: T; } export interface CalendarListResponse extends ToolResponse<GoogleCalendarList> {} export interface CalendarEventsResponse extends ToolResponse<GoogleCalendarEventList> {} export interface CalendarEventResponse extends ToolResponse<GoogleCalendarEvent> {}

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/am2rican5/mcp-google-calendar'

If you have feedback or need assistance with the MCP directory API, please join our Discord server