auth.deliver changes from as:file to as:env: - Gmail: GMAIL_CREDS_JSON env var (Google authorized_user JSON) - Gcal: GCAL_CREDS_JSON env var mcp_config.env removed entirely — Skald injects the env var at runtime, no path on disk needed. Server scripts updated: - Check GMAIL_CREDS_JSON / GCAL_CREDS_JSON env var first - Use Credentials.from_authorized_user_info() instead of from_authorized_user_file() - Fall back to file-based loading for standalone/legacy use - _persist_creds only writes to disk when _creds_path is set gcal/verify.py: support GCAL_CREDS_JSON env var with shared _check_api() Docs (SKALD.md): updated examples, field table, connector table.
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"id": "gcal",
|
|
"name": "Google Calendar",
|
|
"version": "0.3.0",
|
|
"type": "mcp_local",
|
|
"scope": "user",
|
|
"launch_command": "python3 gcal_mcp_server.py",
|
|
"transport": "stdio",
|
|
"requires": ["OAUTH", "PYTHON"],
|
|
"tags": ["calendar", "mcp", "local", "google"],
|
|
"dependencies": [
|
|
"google-api-python-client>=2.150.0",
|
|
"google-auth>=2.35.0",
|
|
"google-auth-oauthlib>=1.2.0"
|
|
],
|
|
"setup_instructions": [
|
|
"Install dependencies: pip install -r requirements.txt",
|
|
"Run: python3 gcal_oauth_setup.py (optional, for standalone use — Skald handles OAuth)"
|
|
],
|
|
"docs": [
|
|
{
|
|
"lang": "en",
|
|
"description": "Read, create, update, delete, and respond to Google Calendar events. Supports push notifications for new events created by others.",
|
|
"llm_short_description": "Google Calendar MCP connector — full CRUD + RSVP + push polling."
|
|
}
|
|
],
|
|
"auth": {
|
|
"type": "oauth2",
|
|
"provider": "google",
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/calendar"
|
|
],
|
|
"deliver": {
|
|
"as": "env",
|
|
"format": "google_authorized_user",
|
|
"env": "GCAL_CREDS_JSON"
|
|
}
|
|
},
|
|
"mcp_config": {
|
|
"command": "python3",
|
|
"args": ["gcal_mcp_server.py"]
|
|
},
|
|
"verify": {
|
|
"command": "python3 verify.py",
|
|
"timeout_secs": 20
|
|
},
|
|
"homepage": "https://calendar.google.com",
|
|
"icon_small": "icon_sm.svg",
|
|
"icon_large": "icon_lg.svg"
|
|
}
|