Install
openclaw skills install @agentpmt/google-calendarGoogle Calendar: create, update, delete events. Natural language quick-add. Recurring events, Google Meet, attendees. Check free/busy availability. Use when an agent needs google calendar, scheduling meetings with attendees, checking calendar availability before booking, creating recurring events like weekly team standups, adding google meet links to virtual meetings, check availability, time min, time max through AgentPMT-hosted remote tool calls.
openclaw skills install @agentpmt/google-calendarLast updated: 2026-06-24.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
Comprehensive Google Calendar integration tool that enables AI agents to manage calendar events and check availability on behalf of users. The tool supports all essential calendar operations including listing calendars and events, creating events with full details or natural language input, updating and deleting events, searching for events by text, and checking free/busy availability. Features include support for recurring events with flexible scheduling patterns, Google Meet video conference integration, attendee management with customizable notification settings, and timezone-aware scheduling. The tool handles both timed events and all-day events, supports custom reminders, and provides paginated results for calendars with many events.
Manage Google Calendar events, check availability, and organize schedules. Requires a Google OAuth connection with calendar permissions.
List all calendars the user has access to.
Required: None (uses defaults)
Optional:
calendar_id (string) - Calendar ID; defaults to "primary"max_results (integer) - Max calendars to return, 1-250; default 50page_token (string) - Pagination token from a previous responseExample:
{
"action": "list_calendars"
}
List events from a calendar, optionally filtered by date range.
Required: None (defaults to upcoming events from now)
Optional:
calendar_id (string) - Calendar ID; defaults to "primary"time_min (string) - Start of range in ISO 8601 (e.g., "2026-03-10T00:00:00Z"); defaults to current timetime_max (string) - End of range in ISO 8601max_results (integer) - Max events to return, 1-250; default 50page_token (string) - Pagination token from a previous responseExample:
{
"action": "list_events",
"time_min": "2026-03-10T00:00:00Z",
"time_max": "2026-03-17T00:00:00Z"
}
Get full details of a specific event.
Required:
event_id (string) - The event ID (obtained from list_events or search_events)Optional:
calendar_id (string) - Calendar ID; defaults to "primary"Example:
{
"action": "get_event",
"event_id": "abc123def456"
}
Create a new calendar event. Provide either timed or all-day date fields.
Required:
summary (string) - Event title (max 1024 characters)start_datetime and end_datetime (ISO 8601 with timezone, e.g., "2026-03-15T14:00:00-05:00")start_date and end_date (YYYY-MM-DD format; end_date is exclusive, so use the day after for single-day events)Optional:
calendar_id (string) - Calendar ID; defaults to "primary"description (string) - Event description or noteslocation (string) - Event location (address or place name)timezone (string) - IANA timezone (e.g., "America/New_York"); defaults to calendar timezoneattendees (array) - List of attendees, each with:
email (string, required) - Attendee emaildisplay_name (string) - Display nameoptional (boolean) - Whether attendance is optional; default falsesend_updates (string) - Who gets email notifications: "all" (default), "externalOnly", or "none"recurrence (object) - Repeating event settings:
frequency (string, required) - "DAILY", "WEEKLY", "MONTHLY", or "YEARLY"interval (integer) - Repeat every N units; default 1count (integer) - Total number of occurrencesuntil (string) - End date for recurrence (YYYY-MM-DD or ISO 8601)by_day (array) - Days of week for WEEKLY: ["MO", "TU", "WE", "TH", "FR", "SA", "SU"]reminders (array) - Custom reminders (only used when use_default_reminders is false), each with:
method (string) - "email" or "popup"; default "popup"minutes (integer) - Minutes before event, 0-40320use_default_reminders (boolean) - Use calendar defaults; default trueadd_video_conference (boolean) - Add a Google Meet link; default falsevisibility (string) - "default", "public", "private", or "confidential"show_as (string) - "busy" or "free"Example - Timed event with attendees and Google Meet:
{
"action": "create_event",
"summary": "Weekly Team Sync",
"start_datetime": "2026-03-15T10:00:00-05:00",
"end_datetime": "2026-03-15T10:30:00-05:00",
"location": "Conference Room A",
"description": "Weekly team sync to review project progress",
"attendees": [
{"email": "alice@example.com"},
{"email": "bob@example.com", "optional": true}
],
"add_video_conference": true,
"recurrence": {
"frequency": "WEEKLY",
"by_day": ["MO"],
"count": 12
}
}
Example - All-day event:
{
"action": "create_event",
"summary": "Company Holiday",
"start_date": "2026-07-04",
"end_date": "2026-07-05",
"show_as": "free"
}
Create an event from a natural language description. Google Calendar parses the text to extract the event title, date, and time.
Required:
text (string) - Natural language event descriptionOptional:
calendar_id (string) - Calendar ID; defaults to "primary"send_updates (string) - Who gets notifications: "all" (default), "externalOnly", or "none"Example:
{
"action": "quick_add",
"text": "Lunch with Sarah tomorrow at noon at Cafe Milano"
}
Update an existing event. Only the fields you provide will be changed; all other fields remain as-is.
Required:
event_id (string) - The event ID to updateOptional (provide any fields to change):
calendar_id (string) - Calendar ID; defaults to "primary"summary (string) - New event titledescription (string) - New descriptionlocation (string) - New locationstart_datetime / end_datetime (string) - New times (must provide both)start_date / end_date (string) - New all-day dates (must provide both)timezone (string) - IANA timezoneattendees (array) - Updated attendee list (replaces existing)recurrence (object) - Updated recurrence settings (requires frequency)reminders (array) - Updated remindersadd_video_conference (boolean) - Add Google Meet linkvisibility (string) - Updated visibilityshow_as (string) - Updated availability displaysend_updates (string) - Who gets notifications: "all" (default), "externalOnly", or "none"Example:
{
"action": "update_event",
"event_id": "abc123def456",
"summary": "Updated Meeting Title",
"location": "Room B instead",
"start_datetime": "2026-03-15T11:00:00-05:00",
"end_datetime": "2026-03-15T11:30:00-05:00"
}
Delete an event from the calendar.
Required:
event_id (string) - The event ID to deleteOptional:
calendar_id (string) - Calendar ID; defaults to "primary"send_updates (string) - Who gets cancellation notifications: "all" (default), "externalOnly", or "none"Example:
{
"action": "delete_event",
"event_id": "abc123def456",
"send_updates": "none"
}
Search for events by text. Searches event title, description, location, and attendees.
Required:
query (string) - Search textOptional:
calendar_id (string) - Calendar ID; defaults to "primary"time_min (string) - Start of search range in ISO 8601; defaults to current timetime_max (string) - End of search range in ISO 8601max_results (integer) - Max events to return, 1-250; default 50page_token (string) - Pagination tokenExample:
{
"action": "search_events",
"query": "budget review",
"time_min": "2026-01-01T00:00:00Z",
"time_max": "2026-12-31T23:59:59Z"
}
Check free/busy times across one or more calendars. Returns busy periods and available time slots, with common free slots calculated when checking multiple calendars.
Required:
time_min (string) - Start of range in ISO 8601time_max (string) - End of range in ISO 8601Optional:
calendar_id (string) - Calendar ID; defaults to "primary" (used when check_calendars is not provided)check_calendars (array of strings) - Multiple calendar IDs to checkattendee_emails (array of strings) - Email addresses to check availability for (requires domain access)timezone (string) - IANA timezone for the queryExample:
{
"action": "check_availability",
"time_min": "2026-03-15T08:00:00-05:00",
"time_max": "2026-03-15T18:00:00-05:00",
"check_calendars": ["primary", "team-calendar@group.calendar.google.com"],
"attendee_emails": ["alice@example.com", "bob@example.com"]
}
Find a meeting time: Use check_availability with attendee emails to find overlapping free slots, then create_event with the chosen time and those attendees.
Reschedule an event: Use search_events or list_events to find the event ID, then update_event with new times.
Set up a recurring meeting: Use create_event with recurrence to define frequency, days, and end conditions.
View the week ahead: Use list_events with time_min set to today and time_max set to 7 days out.
end_date is exclusive: a single-day event on March 15 uses start_date "2026-03-15" and end_date "2026-03-16".send_updates to "none" to suppress notifications.list_events, search_events, or the response of create_event.calendar_id of "primary" (the default) for the user's main calendar, or get other calendar IDs from list_calendars.recurrence object requires frequency when provided. Use either count or until to limit recurrence, not both.Google Calendar on AgentPMT.check_availability, create_event, delete_event, get_event, list_calendars, list_events, quick_add, search_events, update_event.No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 9.
x402 availability: not enabled for this product.
check_availability (action slug: check-availability): Check free/busy times across one or more calendars. Returns busy periods, free blocks, and common available time slots when checking multiple calendars. Price: 5 credits. Parameters: attendee_emails, calendar_id, check_calendars, time_max, time_min, timezone.create_event (action slug: create-event): Create a new calendar event. Provide either timed event fields (start_datetime/end_datetime) or all-day event fields (start_date/end_date). Price: 5 credits. Parameters: add_video_conference, attendees, calendar_id, description, end_date, end_datetime, location, recurrence, plus 9 more.delete_event (action slug: delete-event): Delete an event from the calendar. Price: 5 credits. Parameters: calendar_id, event_id, send_updates.get_event (action slug: get-event): Get full details of a specific calendar event. Price: 5 credits. Parameters: calendar_id, event_id.list_calendars (action slug: list-calendars): List all calendars the user has access to. Price: 5 credits. Parameters: calendar_id, max_results, page_token.list_events (action slug: list-events): List events from a calendar within an optional date range. Defaults to upcoming events from the current time. Price: 5 credits. Parameters: calendar_id, max_results, page_token, time_max, time_min.quick_add (action slug: quick-add): Create an event from a natural language description. Google Calendar parses the text to extract event title, date, and time. Price: 5 credits. Parameters: calendar_id, send_updates, text.search_events (action slug: search-events): Search for events by text. Searches event title, description, location, and attendees. Price: 5 credits. Parameters: calendar_id, max_results, page_token, query, time_max, time_min.update_event (action slug: update-event): Update an existing event. Only provided fields will be changed; all other fields remain as-is. The existing event is fetched first, then the provided fields are merged. Price: 5 credits. Parameters: add_video_conference, attendees, calendar_id, description, end_date, end_datetime, event_id, location, plus 9 more.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "google-calendar".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "google-calendar", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "google-calendar"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "google-calendar"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "google-calendar"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "google-calendar"
}
}
Product slug: google-calendar
Marketplace page: https://www.agentpmt.com/marketplace/google-calendar
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupskills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "Google-Calendar",
"arguments": {
"action": "check_availability",
"attendee_emails": [
"user@example.com"
],
"calendar_id": "primary",
"check_calendars": [
"example check calendar"
],
"time_max": "example time max",
"time_min": "example time min",
"timezone": "example timezone"
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "google-calendar",
"parameters": {
"action": "check_availability",
"attendee_emails": [
"user@example.com"
],
"calendar_id": "primary",
"check_calendars": [
"example check calendar"
],
"time_max": "example time max",
"time_min": "example time min",
"timezone": "example timezone"
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.check_availability fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)