|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "nspady.google-calendar-mcp-npx", |
| 4 | + "name": "Google Calendar (npx)", |
| 5 | + "alias": "google-calendar", |
| 6 | + "description": "Manage Google Calendar with multi-account support, event CRUD, free/busy checks, recurring events, and natural language scheduling. 12 tools across all calendar operations.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/587318?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": [ |
| 10 | + "productivity" |
| 11 | + ], |
| 12 | + "tags": [ |
| 13 | + "google", |
| 14 | + "calendar", |
| 15 | + "scheduling", |
| 16 | + "events", |
| 17 | + "oauth" |
| 18 | + ], |
| 19 | + |
| 20 | + "transport": { |
| 21 | + "type": "stdio", |
| 22 | + "command": "npx", |
| 23 | + "args": [ |
| 24 | + "-y", |
| 25 | + "@cocal/google-calendar-mcp" |
| 26 | + ], |
| 27 | + "env": { |
| 28 | + "GOOGLE_OAUTH_CREDENTIALS": "${input:GOOGLE_OAUTH_CREDENTIALS}" |
| 29 | + }, |
| 30 | + "metadata": { |
| 31 | + "inputs": [ |
| 32 | + { |
| 33 | + "id": "GOOGLE_OAUTH_CREDENTIALS", |
| 34 | + "label": "OAuth Credentials File", |
| 35 | + "description": "Path to the Google Cloud OAuth credentials JSON file (Desktop application type).", |
| 36 | + "type": "file_path", |
| 37 | + "required": true, |
| 38 | + "secret": false, |
| 39 | + "placeholder": "/path/to/oauth-credentials.json", |
| 40 | + "obtain": { |
| 41 | + "url": "https://console.cloud.google.com/apis/credentials", |
| 42 | + "instructions": "1. Go to Google Cloud Console > APIs & Services > Credentials\n2. Click 'Create Credentials' > 'OAuth client ID'\n3. Select 'Desktop app' as application type\n4. Download the JSON credentials file", |
| 43 | + "button_label": "Create Credentials" |
| 44 | + } |
| 45 | + } |
| 46 | + ] |
| 47 | + } |
| 48 | + }, |
| 49 | + |
| 50 | + "auth": { |
| 51 | + "type": "oauth", |
| 52 | + "instructions": "Create a Desktop OAuth 2.0 client in Google Cloud Console. Enable the Google Calendar API. Download the credentials JSON and provide the file path." |
| 53 | + }, |
| 54 | + |
| 55 | + "contributor": { |
| 56 | + "name": "Nathan Spady", |
| 57 | + "github": "nspady", |
| 58 | + "url": "https://github.com/nspady/google-calendar-mcp" |
| 59 | + }, |
| 60 | + |
| 61 | + "links": { |
| 62 | + "repository": "https://github.com/nspady/google-calendar-mcp", |
| 63 | + "homepage": "https://calendar.google.com", |
| 64 | + "documentation": "https://github.com/nspady/google-calendar-mcp#readme" |
| 65 | + }, |
| 66 | + |
| 67 | + "platforms": [ |
| 68 | + "all" |
| 69 | + ], |
| 70 | + |
| 71 | + "capabilities": { |
| 72 | + "tools": true, |
| 73 | + "resources": false, |
| 74 | + "prompts": false, |
| 75 | + "read_only_mode": false |
| 76 | + }, |
| 77 | + |
| 78 | + "changelog_url": "https://github.com/nspady/google-calendar-mcp/releases" |
| 79 | +} |
0 commit comments