MCP Calendar
About
MCP Calendar is a tool that uses the Model Context Protocol (MCP) server to create, modify, and check Google Calendar events. It is designed for users of the Claude Desktop app, integrating with Google Calendar via OAuth2 authentication.
Details
- Author
- tobedoit
- GitHub stars
- 2
- Downloads
- 246
- Categories
- Productivity
Jump to
- Create Google Calendar events from Claude Desktop.
- Modify existing calendar events.
- Check event details.
- Uses OAuth2 for secure Google Calendar API authentication.
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
MCP CalendarCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install the package via pip install mcp-calendar-python, set the required environment variables (GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, GOOGLE_REFRESH_TOKEN), and configure the Claude Desktop app to run the MCP server using uvx with the argument mcp-calendar-python. Once set up, you can ask Claude to add events using natural language.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp calendar": {
"mcp-calendar-python": {
"command": "uvx",
"args": [
"mcp-calendar-python"
],
"env": {
"GOOGLE_CLIENT_ID": "",
"GOOGLE_CLIENT_SECRET": "",
"GOOGLE_REFRESH_TOKEN": ""
}
}
}
}
}
McpServers
{
"mcp-calendar-python": {
"command": "uvx",
"args": [
"mcp-calendar-python"
],
"env": {
"GOOGLE_CLIENT_ID": "",
"GOOGLE_CLIENT_SECRET": "",
"GOOGLE_REFRESH_TOKEN": ""
}
}
}
MCP Calendar
MCP(Model Context Protocol) 서버를 이용한 Google Calendar 이벤트 생성 도구입니다.
설치 방법
pip install mcp-calendar-python
기능
- 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 활성화
2. 환경 변수 설정:
GOOGLE_CLIENT_ID="your_client_id"
GOOGLE_CLIENT_SECRET="your_client_secret"
GOOGLE_REFRESH_TOKEN="your_refresh_token"
3. 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 라이선스 하에 배포됩니다.Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



