From gws
Queries Google Calendar free/busy status for multiple users to find overlapping free slots for meetings. Uses gws CLI to query and create events.
npx claudepluginhub wadewarren/gws-claude-pluginThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`
Queries Google Calendar free/busy status for multiple users via gws CLI to find overlapping meeting slots and create events.
Automate Google Calendar: create/update/delete events, find free slots, manage attendees, list calendars using Rube MCP and Composio toolkit.
Manages Google Calendar events via Python CLI scripts: lists calendars/events, gets details, creates/updates/deletes with standalone OAuth. For Workspace accounts without MCP server.
Share bugs, ideas, or general feedback.
PREREQUISITE: Load the following skills to execute this recipe:
gws-calendar
Query Google Calendar free/busy status for multiple users to find a meeting slot.
gws calendar freebusy query --json '{"timeMin": "2024-03-18T08:00:00Z", "timeMax": "2024-03-18T18:00:00Z", "items": [{"id": "user1@company.com"}, {"id": "user2@company.com"}]}'gws calendar +insert --summary 'Meeting' --attendee user1@company.com --attendee user2@company.com --start '2024-03-18T14:00:00' --end '2024-03-18T14:30:00'