mcp-calendar-python
Allows creating, modifying, and checking Google Calendar events via the Google Calendar API.
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., "@mcp-calendar-pythonCreate a team sync event tomorrow at 2pm"
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.
MCP Calendar
MCP(Model Context Protocol) 서버를 이용한 Google Calendar 이벤트 생성 도구입니다.
설치 방법
pip install mcp-calendar-pythonRelated MCP server: MCP Calendar Server
기능
Claude 데스크톱 앱에서 MCP 서버를 통해 Google Calendar 이벤트를 생성할 수 있습니다
OAuth2를 통한 안전한 Google Calendar API 인증
이벤트 생성, 수정, 확인 기능 지원
시작하기
필수 요구사항
Python 3.10 이상
Google Cloud Console에서 생성한 OAuth 2.0 클라이언트 ID와 시크릿
Claude 데스크톱 앱
설정방법
Google Cloud 콘솔에서 프로젝트 및 OAuth 2.0 클라이언트 ID 생성:
Google Cloud Console에서 새 프로젝트 생성
API 및 서비스 > 사용자 인증 정보에서 OAuth 2.0 클라이언트 ID 생성
Calendar API 활성화
환경 변수 설정:
GOOGLE_CLIENT_ID="your_client_id"
GOOGLE_CLIENT_SECRET="your_client_secret"
GOOGLE_REFRESH_TOKEN="your_refresh_token"Claude 데스크톱 앱에서 다음 설정 사용:
{
"mcp-calendar-python": {
"command": "uvx",
"args": [
"mcp-calendar-python"
],
"env": {
"GOOGLE_CLIENT_ID": "your_client_id",
"GOOGLE_CLIENT_SECRET": "your_client_secret",
"GOOGLE_REFRESH_TOKEN": "your_refresh_token"
}
}
}사용방법
Claude에게 다음과 같이 요청할 수 있습니다:
"내일 오후 2시에 팀 미팅 일정을 추가해줘"
"5월 15일 점심시간에 미팅 일정을 추가해줘"
라이선스
이 프로젝트는 MIT 라이선스 하에 배포됩니다.
Available Tools
2 toolscreate_eventB
Create a calendar event with specified details
Args: summary: Event title start_time: Start time (ISO format) end_time: End time (ISO format) description: Event description location: Event location attendees: List of attendee emails reminders: Reminder settings for the event calendar_id: Calendar ID (default: 'primary') timezone_str: Timezone ID (default: Asia/Seoul) create_meet_link: If True, enable Google Meet link
Returns: String with event creation confirmation and link
| Name | Required | Description | Default |
|---|---|---|---|
| summary | Yes | ||
| start_time | Yes | ||
| end_time | Yes | ||
| description | No | ||
| location | No | ||
| attendees | No | ||
| reminders | No | ||
| calendar_id | No | primary | |
| timezone_str | No | Asia/Seoul | |
| create_meet_link | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so description must disclose behavior. It states creation and return of a confirmation string with link, but lacks side-effect details, permissions, or constraints (e.g., conflict handling, rate limits).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Well-organized with 'Args' and 'Returns' sections, each parameter on its own line. No fluff, but the list is long (10 items) which is acceptable for the parameter count.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers purpose, parameter explanations, and return value adequately. However, lacks behavioral details like whether it can create events in the past, recurrence support, or attendee limits. With an output schema present, return format detail is unnecessary.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema coverage, the description adds significant meaning: specifies ISO format for times, explains each parameter's purpose (e.g., 'List of attendee emails'), and mentions default values and the effect of create_meet_link. However, 'reminders' remains vague (opaque object).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clear verb 'Create' and resource 'calendar event' with specific details. The description distinguishes from the only sibling tool 'health' which is unrelated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use or not use this tool. No alternatives or exclusions provided, leaving the agent without usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
healthB
Simple health check
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. 'Simple health check' suggests a non-destructive, read-only operation, but does not disclose what the check entails (e.g., connectivity, database status), what is returned, or any side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single phrase, front-loaded, and contains no extraneous information. It efficiently conveys the tool's purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with zero parameters and an output schema, the description is nearly complete. However, it does not hint at the output structure or typical usage patterns, which could be helpful given the availability of a output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, and schema description coverage is 100%. The description does not need to add parameter information since none exist. Baseline 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Simple health check' clearly indicates the tool is a health-check endpoint. It distinguishes from the sibling tool 'create_event' which is about event creation, so purpose is clear but lacks specificity on what constitutes a health check.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives (e.g., create_event). The phrase 'Simple health check' implies basic usage, but no explicit context or exclusions are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
v0.3.5- First observed
create_event - First observed
health
TDQS
Only two tools with completely distinct purposes: creating events and health checking. No ambiguity.
Both tools use snake_case naming, and the pattern is simple and predictable.
With only 2 tools, the server is extremely minimal for a calendar service. Typically, a calendar server would need at least list, get, update, delete operations.
The server only provides create_event and health. Missing essential CRUD operations like listing events, updating, and deleting, which are necessary for a calendar domain.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
Multiple Google accounts (Gmail, Calendar, Drive, Contacts, Tasks) in one Claude connector.
1Connect Claude AI to UluP Spaces via MCP — create projects, nodes, and tasks with OAuth 2.0.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAllows interaction with Google Calendar through Claude Desktop using the Model Context Protocol, enabling calendar event management and schedule analysis.2-
- FlicenseNot gradedqualityDmaintenanceConnects Claude Desktop to Google Calendar for local calendar management including adding, updating, and deleting events, checking schedules, and calculating travel time between meetings.1-
- AlicenseNot gradedqualityCmaintenanceEnables Claude to interact with Google Calendar through natural language, providing the ability to view, create, update, and delete calendar events with persistent OAuth2 authentication.20MIT
- AlicenseNot gradedqualityDmaintenanceEnables Claude to interact with Google Calendar through OAuth authentication, allowing users to list events, create and manage meetings, update or delete calendar entries, and find available time slots using natural language.72MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/tobedoit/gCalendar-mcp-python'
If you have feedback or need assistance with the MCP directory API, please join our Discord server