Skip to content

Commit 42c493c

Browse files
jottakkagithub-actions[bot]
authored andcommitted
[AUTO] Adding MCP Servers docs update
1 parent b152186 commit 42c493c

5 files changed

Lines changed: 454 additions & 139 deletions

File tree

toolkit-docs-generator/data/toolkits/googlecalendar.json

Lines changed: 116 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "GoogleCalendar",
33
"label": "Google Calendar",
4-
"version": "3.4.0",
4+
"version": "3.5.0",
55
"description": "Arcade.dev LLM tools for Google Calendar",
66
"metadata": {
77
"category": "productivity",
@@ -27,7 +27,7 @@
2727
{
2828
"name": "CreateEvent",
2929
"qualifiedName": "GoogleCalendar.CreateEvent",
30-
"fullyQualifiedName": "GoogleCalendar.CreateEvent@3.4.0",
30+
"fullyQualifiedName": "GoogleCalendar.CreateEvent@3.5.0",
3131
"description": "Create a new event/meeting/sync/meetup in the specified calendar.\n\nPass `recurrence` to create a repeating event.",
3232
"parameters": [
3333
{
@@ -235,7 +235,7 @@
235235
{
236236
"name": "DeleteEvent",
237237
"qualifiedName": "GoogleCalendar.DeleteEvent",
238-
"fullyQualifiedName": "GoogleCalendar.DeleteEvent@3.4.0",
238+
"fullyQualifiedName": "GoogleCalendar.DeleteEvent@3.5.0",
239239
"description": "Delete an event from Google Calendar.",
240240
"parameters": [
241241
{
@@ -325,7 +325,7 @@
325325
{
326326
"name": "FindTimeSlotsWhenEveryoneIsFree",
327327
"qualifiedName": "GoogleCalendar.FindTimeSlotsWhenEveryoneIsFree",
328-
"fullyQualifiedName": "GoogleCalendar.FindTimeSlotsWhenEveryoneIsFree@3.4.0",
328+
"fullyQualifiedName": "GoogleCalendar.FindTimeSlotsWhenEveryoneIsFree@3.5.0",
329329
"description": "Provides time slots when everyone is free within a given date range and time boundaries.",
330330
"parameters": [
331331
{
@@ -441,7 +441,7 @@
441441
{
442442
"name": "ListCalendars",
443443
"qualifiedName": "GoogleCalendar.ListCalendars",
444-
"fullyQualifiedName": "GoogleCalendar.ListCalendars@3.4.0",
444+
"fullyQualifiedName": "GoogleCalendar.ListCalendars@3.5.0",
445445
"description": "List all calendars accessible by the user.",
446446
"parameters": [
447447
{
@@ -541,7 +541,7 @@
541541
{
542542
"name": "ListEvents",
543543
"qualifiedName": "GoogleCalendar.ListEvents",
544-
"fullyQualifiedName": "GoogleCalendar.ListEvents@3.4.0",
544+
"fullyQualifiedName": "GoogleCalendar.ListEvents@3.5.0",
545545
"description": "List events from the specified calendar within the given datetime range.\n\nmin_end_datetime serves as the lower bound (exclusive) for an event's end time.\nmax_start_datetime serves as the upper bound (exclusive) for an event's start time.\n\nFor example:\nIf min_end_datetime is set to 2024-09-15T09:00:00 and max_start_datetime\nis set to 2024-09-16T17:00:00, the function will return events that:\n1. End after 09:00 on September 15, 2024 (exclusive)\n2. Start before 17:00 on September 16, 2024 (exclusive)\nThis means an event starting at 08:00 on September 15 and\nending at 10:00 on September 15 would be included, but an\nevent starting at 17:00 on September 16 would not be included.",
546546
"parameters": [
547547
{
@@ -638,10 +638,116 @@
638638
"extras": null
639639
}
640640
},
641+
{
642+
"name": "RespondToEvent",
643+
"qualifiedName": "GoogleCalendar.RespondToEvent",
644+
"fullyQualifiedName": "GoogleCalendar.RespondToEvent@3.5.0",
645+
"description": "Accept or decline (RSVP to) a meeting invitation on the authenticated user's behalf.\n\nSets the user's responseStatus for an event they were invited to.",
646+
"parameters": [
647+
{
648+
"name": "event_id",
649+
"type": "string",
650+
"required": true,
651+
"description": "The ID of the event to respond to. Use the event id from list_events to respond to a single occurrence of a recurring event, or its recurringEventId to respond to the whole series.",
652+
"enum": null,
653+
"inferrable": true
654+
},
655+
{
656+
"name": "response",
657+
"type": "string",
658+
"required": true,
659+
"description": "The RSVP response: accepted or declined.",
660+
"enum": [
661+
"accepted",
662+
"declined"
663+
],
664+
"inferrable": true
665+
},
666+
{
667+
"name": "calendar_id",
668+
"type": "string",
669+
"required": false,
670+
"description": "The ID of the calendar containing the event",
671+
"enum": null,
672+
"inferrable": true
673+
},
674+
{
675+
"name": "send_updates",
676+
"type": "string",
677+
"required": false,
678+
"description": "Should attendees be notified of the response? (none, all, external_only)",
679+
"enum": [
680+
"none",
681+
"all",
682+
"externalOnly"
683+
],
684+
"inferrable": true
685+
}
686+
],
687+
"auth": {
688+
"providerId": "google",
689+
"providerType": "oauth2",
690+
"scopes": [
691+
"https://www.googleapis.com/auth/calendar.events"
692+
]
693+
},
694+
"secrets": [],
695+
"secretsInfo": [],
696+
"output": {
697+
"type": "string",
698+
"description": "A confirmation message with the new RSVP status and event details"
699+
},
700+
"documentationChunks": [],
701+
"codeExample": {
702+
"toolName": "GoogleCalendar.RespondToEvent",
703+
"parameters": {
704+
"event_id": {
705+
"value": "7q3k2p1abc456def789ghi_20240315T140000Z",
706+
"type": "string",
707+
"required": true
708+
},
709+
"response": {
710+
"value": "accepted",
711+
"type": "string",
712+
"required": true
713+
},
714+
"calendar_id": {
715+
"value": "user@example.com",
716+
"type": "string",
717+
"required": false
718+
},
719+
"send_updates": {
720+
"value": "all",
721+
"type": "string",
722+
"required": false
723+
}
724+
},
725+
"requiresAuth": true,
726+
"authProvider": "google",
727+
"tabLabel": "Call the Tool with User Authorization"
728+
},
729+
"metadata": {
730+
"classification": {
731+
"serviceDomains": [
732+
"calendar"
733+
]
734+
},
735+
"behavior": {
736+
"operations": [
737+
"update"
738+
],
739+
"readOnly": false,
740+
"destructive": false,
741+
"idempotent": true,
742+
"openWorld": true
743+
},
744+
"extras": null
745+
}
746+
},
641747
{
642748
"name": "UpdateEvent",
643749
"qualifiedName": "GoogleCalendar.UpdateEvent",
644-
"fullyQualifiedName": "GoogleCalendar.UpdateEvent@3.4.0",
750+
"fullyQualifiedName": "GoogleCalendar.UpdateEvent@3.5.0",
645751
"description": "Update an existing event in the specified calendar with the provided details.\nOnly the provided fields will be updated; others will remain unchanged.\n\n`updated_start_datetime` and `updated_end_datetime` are\nindependent and can be provided separately.",
646752
"parameters": [
647753
{
@@ -880,7 +986,7 @@
880986
{
881987
"name": "WhoAmI",
882988
"qualifiedName": "GoogleCalendar.WhoAmI",
883-
"fullyQualifiedName": "GoogleCalendar.WhoAmI@3.4.0",
989+
"fullyQualifiedName": "GoogleCalendar.WhoAmI@3.5.0",
884990
"description": "Get comprehensive user profile and Google Calendar environment information.\n\nThis tool provides detailed information about the authenticated user including\ntheir name, email, profile picture, Google Calendar access permissions, and other\nimportant profile details from Google services.",
885991
"parameters": [],
886992
"auth": {
@@ -945,6 +1051,6 @@
9451051
"import ScopePicker from \"@/app/_components/scope-picker\";"
9461052
],
9471053
"subPages": [],
948-
"generatedAt": "2026-06-05T12:08:01.475Z",
949-
"summary": "The Google Calendar toolkit for Arcade integrates with Google Calendar via OAuth, enabling LLMs to read, create, update, and delete calendar data on behalf of authenticated users.\n\n## Capabilities\n\n- **Calendar discovery & user context:** List all calendars accessible to the user and retrieve the authenticated user's profile, email, and Calendar access permissions.\n- **Event querying:** List events within a datetime range using precise exclusive bounds on both start and end times, supporting complex filtering across one or more days.\n- **Event management:** Create single or recurring events (via recurrence rules), update individual fields of existing events without overwriting unchanged fields, and delete events.\n- **Scheduling assistance:** Find available time slots when all specified participants are free within a given date range and time boundaries.\n\n## OAuth\n\nThis toolkit uses OAuth 2.0 via the **Google** provider. See the [Arcade Google auth provider docs](https://docs.arcade.dev/en/references/auth-providers/google) for setup details, required API enablement, and scope coverage."
1054+
"generatedAt": "2026-07-01T12:07:52.574Z",
1055+
"summary": "**Google Calendar toolkit** connects Arcade-powered LLMs to Google Calendar, enabling agents to read, create, modify, and delete calendar data on behalf of authenticated users.\n\n## Capabilities\n\n- **Calendar discovery & user context** — list all accessible calendars and retrieve the authenticated user's profile, email, permissions, and environment details.\n- **Event querying** — list events within precise datetime ranges using independent lower/upper bounds on end and start times, supporting complex overlap queries.\n- **Event creation & recurrence** — create one-off or repeating events/meetings with full recurrence rule support.\n- **Event management** — update individual fields of existing events (start/end times are independently settable), delete events, and RSVP (accept or decline) on the user's behalf.\n- **Availability analysis** — find free time slots across multiple attendees within a specified date range and daily time boundaries.\n\n## OAuth\n\nThis toolkit uses OAuth 2.0 via the **Google** provider. See the [Arcade Google auth provider docs](https://docs.arcade.dev/en/references/auth-providers/google) for configuration details, required scopes, and setup instructions."
9501056
}

toolkit-docs-generator/data/toolkits/index.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"generatedAt": "2026-06-29T12:37:34.138Z",
2+
"generatedAt": "2026-07-01T12:08:11.358Z",
33
"version": "1.0.0",
44
"toolkits": [
55
{
@@ -356,10 +356,10 @@
356356
{
357357
"id": "GoogleCalendar",
358358
"label": "Google Calendar",
359-
"version": "3.4.0",
359+
"version": "3.5.0",
360360
"category": "productivity",
361361
"type": "arcade",
362-
"toolCount": 7,
362+
"toolCount": 8,
363363
"authType": "oauth2"
364364
},
365365
{
@@ -590,7 +590,7 @@
590590
{
591591
"id": "Jira",
592592
"label": "Jira",
593-
"version": "3.1.4",
593+
"version": "3.1.5",
594594
"category": "productivity",
595595
"type": "arcade",
596596
"toolCount": 43,
@@ -599,7 +599,7 @@
599599
{
600600
"id": "Linear",
601601
"label": "Linear",
602-
"version": "3.6.0",
602+
"version": "3.6.2",
603603
"category": "productivity",
604604
"type": "arcade",
605605
"toolCount": 42,
@@ -887,10 +887,10 @@
887887
{
888888
"id": "Telegram",
889889
"label": "Telegram",
890-
"version": "1.0.1",
890+
"version": "1.1.0",
891891
"category": "social",
892892
"type": "arcade",
893-
"toolCount": 5,
893+
"toolCount": 7,
894894
"authType": "none"
895895
},
896896
{

0 commit comments

Comments
 (0)