2.9 KiB
2.9 KiB
description
| description |
|---|
| Set up gcallm CLI with Google Calendar OAuth2 credentials |
Google Calendar CLI Setup
This command guides you through setting up the gcallm CLI for adding events to Google Calendar.
Prerequisites
You need:
- OAuth2 credentials from Google Cloud Console
- Google Calendar MCP server configured in Claude Code
Step 1: Get OAuth2 Credentials
- Go to Google Cloud Console
- Create a new project or select an existing one
- Enable the Google Calendar API:
- Go to "APIs & Services" > "Enable APIs and Services"
- Search for "Google Calendar API" and enable it
- Create OAuth2 credentials:
- Go to "Credentials" > "Create Credentials" > "OAuth client ID"
- Application type: Desktop app
- Name: "Calendar CLI" (or any name)
- Click "Create"
- Download the credentials JSON file
- Save it somewhere accessible (e.g.,
~/gcp-oauth.keys.json)
Step 2: Install gcallm
# Install from PyPI
uv tool install gcallm
# Or with pip
pip install gcallm
Verify installation:
which gcallm
# Should output: /Users/wz/.local/bin/gcallm
Step 3: Configure OAuth Path
Point gcallm to your OAuth credentials:
gcallm setup ~/gcp-oauth.keys.json
Or interactively:
gcallm setup
# Will prompt for path
Step 4: Configure Google Calendar MCP
gcallm requires the Google Calendar MCP server. Add it to Claude Code:
claude mcp add gcal npx @anthropic/mcp-google-calendar -s local
This uses the OAuth credentials you configured.
Step 5: Verify Setup
gcallm verify
Expected output:
Google Calendar MCP: OK
OAuth credentials: Configured
Test with a simple query:
gcallm ask "What's on my calendar today?"
Configuration Files
~/.config/gcallm/
├── config.json # Settings (model, prompt)
└── oauth_path # Path to OAuth credentials
# OAuth credentials (shared with other Google tools)
~/gcp-oauth.keys.json # Or wherever you saved it
Troubleshooting
"MCP server not configured" Error
The Google Calendar MCP server isn't set up:
# Add the MCP server
claude mcp add gcal npx @anthropic/mcp-google-calendar -s local
# Verify it's configured
claude mcp list
"OAuth credentials not found" Error
Re-run setup with the correct path:
gcallm setup /correct/path/to/oauth-keys.json
Authentication Failed
Your OAuth token may have expired. Re-authenticate:
- Delete existing credentials:
rm ~/.config/gcallm/* - Re-run:
gcallm setup ~/gcp-oauth.keys.json - Complete the browser authentication flow
Permission Denied
Ensure the OAuth app has calendar scope:
- Go to Google Cloud Console > APIs & Services > OAuth consent screen
- Add scope:
https://www.googleapis.com/auth/calendar
Related Commands
/gcal- Usage guide for gcallm CLI