Skip to main content
Glama
tobedoit
by tobedoit

MCP Calendar

PyPI license

MCP(Model Context Protocol) 서버를 이용한 Google Calendar 이벤트 생성 도구입니다.

설치 방법

pip install mcp-calendar-python

Related MCP server: MCP Calendar Server

기능

  • Claude 데스크톱 앱에서 MCP 서버를 통해 Google Calendar 이벤트를 생성할 수 있습니다

  • OAuth2를 통한 안전한 Google Calendar API 인증

  • 이벤트 생성, 수정, 확인 기능 지원

시작하기

필수 요구사항

  • Python 3.10 이상

  • Google Cloud Console에서 생성한 OAuth 2.0 클라이언트 ID와 시크릿

  • Claude 데스크톱 앱

설정방법

  1. Google Cloud 콘솔에서 프로젝트 및 OAuth 2.0 클라이언트 ID 생성:

  • Google Cloud Console에서 새 프로젝트 생성

  • API 및 서비스 > 사용자 인증 정보에서 OAuth 2.0 클라이언트 ID 생성

  • Calendar API 활성화

  1. 환경 변수 설정:

GOOGLE_CLIENT_ID="your_client_id"
GOOGLE_CLIENT_SECRET="your_client_secret"
GOOGLE_REFRESH_TOKEN="your_refresh_token"
  1. 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 tools
create_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

ParametersJSON Schema
NameRequiredDescriptionDefault
summaryYes
start_timeYes
end_timeYes
descriptionNo
locationNo
attendeesNo
remindersNo
calendar_idNoprimary
timezone_strNoAsia/Seoul
create_meet_linkNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

  1. 2 tool updatesv0.3.5
    • First observedcreate_event
    • First observedhealth

TDQS

B3.4/5.0
Disambiguation5/5

Only two tools with completely distinct purposes: creating events and health checking. No ambiguity.

Naming Consistency5/5

Both tools use snake_case naming, and the pattern is simple and predictable.

Tool Count2/5

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.

Completeness2/5

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

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

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/tobedoit/gCalendar-mcp-python'

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