@credal/actions 0.2.171 → 0.2.173

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/actions/actionMapper.js +7 -1
  2. package/dist/actions/autogen/definitions.d.ts +5 -0
  3. package/dist/actions/autogen/definitions.js +132 -0
  4. package/dist/actions/autogen/templates.d.ts +1 -0
  5. package/dist/actions/autogen/templates.js +222 -0
  6. package/dist/actions/autogen/types.d.ts +48 -10
  7. package/dist/actions/autogen/types.js +25 -23
  8. package/dist/actions/definitions.js +35 -0
  9. package/dist/actions/groups.js +14 -1
  10. package/dist/actions/invokeMapper.d.ts +9 -0
  11. package/dist/actions/invokeMapper.js +33 -0
  12. package/dist/actions/parse.d.ts +3 -0
  13. package/dist/actions/parse.js +94 -1
  14. package/dist/actions/providers/confluence/updatePage.d.ts +3 -0
  15. package/dist/actions/providers/confluence/updatePage.js +43 -0
  16. package/dist/actions/providers/google-oauth/getSheetValue.d.ts +3 -0
  17. package/dist/actions/providers/google-oauth/getSheetValue.js +50 -0
  18. package/dist/actions/providers/google-oauth/getSheetValues.d.ts +3 -0
  19. package/dist/actions/providers/google-oauth/getSheetValues.js +50 -0
  20. package/dist/actions/providers/google-oauth/listGmailThreads.d.ts +3 -0
  21. package/dist/actions/providers/google-oauth/listGmailThreads.js +98 -0
  22. package/dist/actions/providers/google-oauth/searchGmailMessages.d.ts +3 -0
  23. package/dist/actions/providers/google-oauth/searchGmailMessages.js +91 -0
  24. package/dist/actions/providers/googlemaps/nearbysearch.d.ts +3 -0
  25. package/dist/actions/providers/googlemaps/nearbysearch.js +96 -0
  26. package/dist/actions/providers/jamf/types.d.ts +8 -0
  27. package/dist/actions/providers/jamf/types.js +7 -0
  28. package/dist/actions/providers/jira/createTicket.d.ts +3 -0
  29. package/dist/actions/providers/jira/createTicket.js +34 -0
  30. package/dist/actions/providers/slack/archiveChannel.js +9 -2
  31. package/dist/actions/providers/slack/listConversations.d.ts +1 -1
  32. package/dist/actions/providers/slack/list_conversations.d.ts +3 -0
  33. package/dist/actions/providers/slack/list_conversations.js +60 -0
  34. package/dist/actions/providers/slack/sendDmFromBot.d.ts +11 -0
  35. package/dist/actions/providers/slack/sendDmFromBot.js +86 -0
  36. package/dist/actions/providers/slack/summarizeChannel.d.ts +3 -0
  37. package/dist/actions/providers/slack/summarizeChannel.js +51 -0
  38. package/dist/actions/schema.js +6 -0
  39. package/dist/actions/types.js +2 -0
  40. package/dist/main.js +11 -0
  41. package/package.json +1 -1
@@ -1,6 +1,7 @@
1
1
  export const genericFillTemplateDefinition = {
2
2
  description: "Simple utility that takes a template and returns it filled in",
3
3
  scopes: [],
4
+ tags: [],
4
5
  parameters: {
5
6
  type: "object",
6
7
  required: ["template"],
@@ -27,6 +28,7 @@ export const genericFillTemplateDefinition = {
27
28
  export const perplexityPerplexityDeepResearchDefinition = {
28
29
  description: "Performs deep research using Perplexity AI",
29
30
  scopes: [],
31
+ tags: [],
30
32
  parameters: {
31
33
  type: "object",
32
34
  required: ["query"],
@@ -108,6 +110,7 @@ export const perplexityPerplexityDeepResearchDefinition = {
108
110
  export const asanaCommentTaskDefinition = {
109
111
  description: "Comments on an Asana task with specified content",
110
112
  scopes: [],
113
+ tags: [],
111
114
  parameters: {
112
115
  type: "object",
113
116
  required: ["taskId", "commentText"],
@@ -150,6 +153,7 @@ export const asanaCommentTaskDefinition = {
150
153
  export const asanaListAsanaTasksByProjectDefinition = {
151
154
  description: "List all tasks associated with an Asana project and their data",
152
155
  scopes: [],
156
+ tags: [],
153
157
  parameters: {
154
158
  type: "object",
155
159
  required: ["projectId"],
@@ -317,6 +321,7 @@ export const asanaListAsanaTasksByProjectDefinition = {
317
321
  export const asanaCreateTaskDefinition = {
318
322
  description: "Create an Asana task with specified content using optional template",
319
323
  scopes: [],
324
+ tags: [],
320
325
  parameters: {
321
326
  type: "object",
322
327
  required: ["name", "projectId"],
@@ -380,6 +385,7 @@ export const asanaCreateTaskDefinition = {
380
385
  export const asanaUpdateTaskDefinition = {
381
386
  description: "Updates a Asana task with specified content",
382
387
  scopes: [],
388
+ tags: [],
383
389
  parameters: {
384
390
  type: "object",
385
391
  required: ["taskId"],
@@ -443,6 +449,7 @@ export const asanaUpdateTaskDefinition = {
443
449
  export const asanaSearchTasksDefinition = {
444
450
  description: "List all tasks associated with search query",
445
451
  scopes: [],
452
+ tags: [],
446
453
  parameters: {
447
454
  type: "object",
448
455
  required: ["query"],
@@ -496,6 +503,7 @@ export const asanaSearchTasksDefinition = {
496
503
  export const asanaGetTasksDetailsDefinition = {
497
504
  description: "Retrieve detailed information (assignee, comments, description, title, etc.) for a list of task IDs",
498
505
  scopes: [],
506
+ tags: [],
499
507
  parameters: {
500
508
  type: "object",
501
509
  required: ["taskIds"],
@@ -583,9 +591,57 @@ export const asanaGetTasksDetailsDefinition = {
583
591
  name: "getTasksDetails",
584
592
  provider: "asana",
585
593
  };
594
+ export const slackSendDmFromBotDefinition = {
595
+ description: "Sends a direct message to a user on Slack using a bot",
596
+ scopes: ["users:read", "channels:manage", "chat:write"],
597
+ tags: [],
598
+ parameters: {
599
+ type: "object",
600
+ required: ["email", "message"],
601
+ properties: {
602
+ email: {
603
+ type: "string",
604
+ description: "The email of the user to send the DM to",
605
+ },
606
+ message: {
607
+ type: "string",
608
+ description: "The message content to send",
609
+ },
610
+ },
611
+ },
612
+ output: {
613
+ type: "object",
614
+ required: ["success"],
615
+ properties: {
616
+ success: {
617
+ type: "boolean",
618
+ description: "Whether the DM was sent successfully",
619
+ },
620
+ error: {
621
+ type: "string",
622
+ description: "Error message if the operation failed",
623
+ },
624
+ channelId: {
625
+ type: "string",
626
+ description: "The ID of the DM channel",
627
+ },
628
+ timestamp: {
629
+ type: "string",
630
+ description: "The timestamp of the sent message",
631
+ },
632
+ permalink: {
633
+ type: "string",
634
+ description: "The permalink to the sent message",
635
+ },
636
+ },
637
+ },
638
+ name: "sendDmFromBot",
639
+ provider: "slack",
640
+ };
586
641
  export const slackCreateChannelDefinition = {
587
642
  description: "Creates a new Slack channel using a bot token",
588
643
  scopes: ["channels:manage"],
644
+ tags: [],
589
645
  parameters: {
590
646
  type: "object",
591
647
  required: ["channelName"],
@@ -628,6 +684,7 @@ export const slackCreateChannelDefinition = {
628
684
  export const slackSendMessageDefinition = {
629
685
  description: "Sends a message to a Slack channel",
630
686
  scopes: ["chat:write"],
687
+ tags: [],
631
688
  parameters: {
632
689
  type: "object",
633
690
  required: ["message"],
@@ -670,6 +727,7 @@ export const slackSendMessageDefinition = {
670
727
  export const slackGetChannelMessagesDefinition = {
671
728
  description: "Gets messages from a Slack channel",
672
729
  scopes: ["channels:history"],
730
+ tags: [],
673
731
  parameters: {
674
732
  type: "object",
675
733
  required: ["oldest"],
@@ -758,6 +816,7 @@ export const slackUserSearchSlackDefinition = {
758
816
  "mpim:history",
759
817
  "users:read.email",
760
818
  ],
819
+ tags: [],
761
820
  parameters: {
762
821
  type: "object",
763
822
  required: [],
@@ -933,6 +992,7 @@ export const slackUserSearchSlackDefinition = {
933
992
  export const mathAddDefinition = {
934
993
  description: "Adds two numbers together",
935
994
  scopes: [],
995
+ tags: [],
936
996
  parameters: {
937
997
  type: "object",
938
998
  required: ["a", "b"],
@@ -963,6 +1023,7 @@ export const mathAddDefinition = {
963
1023
  export const confluenceOverwritePageDefinition = {
964
1024
  description: "Updates a Confluence page with the new content specified",
965
1025
  scopes: [],
1026
+ tags: [],
966
1027
  parameters: {
967
1028
  type: "object",
968
1029
  required: ["pageId", "title", "content"],
@@ -1001,6 +1062,7 @@ export const confluenceOverwritePageDefinition = {
1001
1062
  export const confluenceFetchPageContentDefinition = {
1002
1063
  description: "Fetches content from a Confluence page",
1003
1064
  scopes: [],
1065
+ tags: [],
1004
1066
  parameters: {
1005
1067
  type: "object",
1006
1068
  required: ["pageId"],
@@ -1048,6 +1110,7 @@ export const confluenceFetchPageContentDefinition = {
1048
1110
  export const jiraAssignJiraTicketDefinition = {
1049
1111
  description: "Assigns/Reassigns a Jira ticket to a specified user",
1050
1112
  scopes: ["write:jira-work", "read:jira-user"],
1113
+ tags: [],
1051
1114
  parameters: {
1052
1115
  type: "object",
1053
1116
  required: ["projectKey", "issueId", "assignee"],
@@ -1090,6 +1153,7 @@ export const jiraAssignJiraTicketDefinition = {
1090
1153
  export const jiraPublicCommentOnServiceDeskRequestDefinition = {
1091
1154
  description: "Comments publicly on a Jira service desk request with specified content",
1092
1155
  scopes: ["write:comment:jira"],
1156
+ tags: [],
1093
1157
  parameters: {
1094
1158
  type: "object",
1095
1159
  required: ["issueId", "comment"],
@@ -1128,6 +1192,7 @@ export const jiraPublicCommentOnServiceDeskRequestDefinition = {
1128
1192
  export const jiraCommentJiraTicketDefinition = {
1129
1193
  description: "Comments on a Jira ticket with specified content",
1130
1194
  scopes: ["write:comment:jira"],
1195
+ tags: [],
1131
1196
  parameters: {
1132
1197
  type: "object",
1133
1198
  required: ["projectKey", "issueId", "comment"],
@@ -1170,6 +1235,7 @@ export const jiraCommentJiraTicketDefinition = {
1170
1235
  export const jiraCreateJiraTicketDefinition = {
1171
1236
  description: "Create a jira ticket with new content specified",
1172
1237
  scopes: [],
1238
+ tags: [],
1173
1239
  parameters: {
1174
1240
  type: "object",
1175
1241
  required: ["projectKey", "summary", "description", "issueType"],
@@ -1233,6 +1299,7 @@ export const jiraCreateJiraTicketDefinition = {
1233
1299
  export const jiraGetServiceDesksDefinition = {
1234
1300
  description: "Get the service desks for a Jira instance",
1235
1301
  scopes: [],
1302
+ tags: [],
1236
1303
  parameters: {
1237
1304
  type: "object",
1238
1305
  required: [],
@@ -1326,6 +1393,7 @@ export const jiraGetServiceDesksDefinition = {
1326
1393
  export const jiraCreateServiceDeskRequestDefinition = {
1327
1394
  description: "Create a jira service desk request with specified content",
1328
1395
  scopes: [],
1396
+ tags: [],
1329
1397
  parameters: {
1330
1398
  type: "object",
1331
1399
  required: ["serviceDeskId", "requestTypeId", "summary", "description"],
@@ -1384,6 +1452,7 @@ export const jiraCreateServiceDeskRequestDefinition = {
1384
1452
  export const jiraGetJiraTicketDetailsDefinition = {
1385
1453
  description: "Get details of a ticket in Jira",
1386
1454
  scopes: ["read:jira-work"],
1455
+ tags: [],
1387
1456
  parameters: {
1388
1457
  type: "object",
1389
1458
  required: ["projectKey", "issueId"],
@@ -1440,6 +1509,7 @@ export const jiraGetJiraTicketDetailsDefinition = {
1440
1509
  export const jiraGetJiraTicketHistoryDefinition = {
1441
1510
  description: "Get ticket history of a ticket in Jira",
1442
1511
  scopes: ["read:jira-work"],
1512
+ tags: [],
1443
1513
  parameters: {
1444
1514
  type: "object",
1445
1515
  required: ["projectKey", "issueId"],
@@ -1478,6 +1548,7 @@ export const jiraGetJiraTicketHistoryDefinition = {
1478
1548
  export const jiraUpdateJiraTicketDetailsDefinition = {
1479
1549
  description: "Update a Jira ticket with new content specified",
1480
1550
  scopes: ["write:jira-work"],
1551
+ tags: [],
1481
1552
  parameters: {
1482
1553
  type: "object",
1483
1554
  required: ["projectKey", "issueId"],
@@ -1537,6 +1608,7 @@ export const jiraUpdateJiraTicketDetailsDefinition = {
1537
1608
  export const jiraUpdateJiraTicketStatusDefinition = {
1538
1609
  description: "Updates the status of Jira ticket with specified status",
1539
1610
  scopes: ["read:jira-work", "write:jira-work"],
1611
+ tags: [],
1540
1612
  parameters: {
1541
1613
  type: "object",
1542
1614
  required: ["projectKey", "issueId", "status"],
@@ -1579,6 +1651,7 @@ export const jiraUpdateJiraTicketStatusDefinition = {
1579
1651
  export const jiraGetJiraIssuesByQueryDefinition = {
1580
1652
  description: "Retrieve Jira Issues by JQL query",
1581
1653
  scopes: [],
1654
+ tags: [],
1582
1655
  parameters: {
1583
1656
  type: "object",
1584
1657
  required: ["query"],
@@ -1777,6 +1850,7 @@ export const jiraGetJiraIssuesByQueryDefinition = {
1777
1850
  export const jiraOrgAssignJiraTicketDefinition = {
1778
1851
  description: "Assigns/Reassigns a Jira ticket to a specified user",
1779
1852
  scopes: ["write:jira-work", "read:jira-user"],
1853
+ tags: [],
1780
1854
  parameters: {
1781
1855
  type: "object",
1782
1856
  required: ["projectKey", "issueId", "assignee"],
@@ -1819,6 +1893,7 @@ export const jiraOrgAssignJiraTicketDefinition = {
1819
1893
  export const jiraOrgPublicCommentOnServiceDeskRequestDefinition = {
1820
1894
  description: "Comments publicly on a Jira service desk request with specified content",
1821
1895
  scopes: ["write:comment:jira"],
1896
+ tags: [],
1822
1897
  parameters: {
1823
1898
  type: "object",
1824
1899
  required: ["issueId", "comment"],
@@ -1857,6 +1932,7 @@ export const jiraOrgPublicCommentOnServiceDeskRequestDefinition = {
1857
1932
  export const jiraOrgCommentJiraTicketDefinition = {
1858
1933
  description: "Comments on a Jira ticket with specified content",
1859
1934
  scopes: ["write:comment:jira"],
1935
+ tags: [],
1860
1936
  parameters: {
1861
1937
  type: "object",
1862
1938
  required: ["projectKey", "issueId", "comment"],
@@ -1899,6 +1975,7 @@ export const jiraOrgCommentJiraTicketDefinition = {
1899
1975
  export const jiraOrgCreateJiraTicketDefinition = {
1900
1976
  description: "Create a jira ticket with new content specified",
1901
1977
  scopes: [],
1978
+ tags: [],
1902
1979
  parameters: {
1903
1980
  type: "object",
1904
1981
  required: ["projectKey", "summary", "description", "issueType"],
@@ -1962,6 +2039,7 @@ export const jiraOrgCreateJiraTicketDefinition = {
1962
2039
  export const jiraOrgGetServiceDesksDefinition = {
1963
2040
  description: "Get the service desks for a Jira instance",
1964
2041
  scopes: [],
2042
+ tags: [],
1965
2043
  parameters: {
1966
2044
  type: "object",
1967
2045
  required: [],
@@ -2055,6 +2133,7 @@ export const jiraOrgGetServiceDesksDefinition = {
2055
2133
  export const jiraOrgCreateServiceDeskRequestDefinition = {
2056
2134
  description: "Create a jira service desk request with specified content",
2057
2135
  scopes: [],
2136
+ tags: [],
2058
2137
  parameters: {
2059
2138
  type: "object",
2060
2139
  required: ["serviceDeskId", "requestTypeId", "summary", "description"],
@@ -2113,6 +2192,7 @@ export const jiraOrgCreateServiceDeskRequestDefinition = {
2113
2192
  export const jiraOrgGetJiraTicketDetailsDefinition = {
2114
2193
  description: "Get details of a ticket in Jira",
2115
2194
  scopes: ["read:jira-work"],
2195
+ tags: [],
2116
2196
  parameters: {
2117
2197
  type: "object",
2118
2198
  required: ["projectKey", "issueId"],
@@ -2169,6 +2249,7 @@ export const jiraOrgGetJiraTicketDetailsDefinition = {
2169
2249
  export const jiraOrgGetJiraTicketHistoryDefinition = {
2170
2250
  description: "Get ticket history of a ticket in Jira",
2171
2251
  scopes: ["read:jira-work"],
2252
+ tags: [],
2172
2253
  parameters: {
2173
2254
  type: "object",
2174
2255
  required: ["projectKey", "issueId"],
@@ -2207,6 +2288,7 @@ export const jiraOrgGetJiraTicketHistoryDefinition = {
2207
2288
  export const jiraOrgUpdateJiraTicketDetailsDefinition = {
2208
2289
  description: "Update a Jira ticket with new content specified",
2209
2290
  scopes: ["write:jira-work"],
2291
+ tags: [],
2210
2292
  parameters: {
2211
2293
  type: "object",
2212
2294
  required: ["projectKey", "issueId"],
@@ -2266,6 +2348,7 @@ export const jiraOrgUpdateJiraTicketDetailsDefinition = {
2266
2348
  export const jiraOrgUpdateJiraTicketStatusDefinition = {
2267
2349
  description: "Updates the status of Jira ticket with specified status",
2268
2350
  scopes: ["read:jira-work", "write:jira-work"],
2351
+ tags: [],
2269
2352
  parameters: {
2270
2353
  type: "object",
2271
2354
  required: ["projectKey", "issueId", "status"],
@@ -2308,6 +2391,7 @@ export const jiraOrgUpdateJiraTicketStatusDefinition = {
2308
2391
  export const jiraOrgGetJiraIssuesByQueryDefinition = {
2309
2392
  description: "Retrieve Jira Issues by JQL query",
2310
2393
  scopes: [],
2394
+ tags: [],
2311
2395
  parameters: {
2312
2396
  type: "object",
2313
2397
  required: ["query"],
@@ -2506,6 +2590,7 @@ export const jiraOrgGetJiraIssuesByQueryDefinition = {
2506
2590
  export const jiraDataCenterAssignJiraTicketDefinition = {
2507
2591
  description: "Assigns/Reassigns a Jira ticket to a specified user",
2508
2592
  scopes: ["write:jira-work", "read:jira-user"],
2593
+ tags: [],
2509
2594
  parameters: {
2510
2595
  type: "object",
2511
2596
  required: ["projectKey", "issueId", "assignee"],
@@ -2548,6 +2633,7 @@ export const jiraDataCenterAssignJiraTicketDefinition = {
2548
2633
  export const jiraDataCenterPublicCommentOnServiceDeskRequestDefinition = {
2549
2634
  description: "Comments publicly on a Jira service desk request with specified content",
2550
2635
  scopes: ["write:comment:jira"],
2636
+ tags: [],
2551
2637
  parameters: {
2552
2638
  type: "object",
2553
2639
  required: ["issueId", "comment"],
@@ -2586,6 +2672,7 @@ export const jiraDataCenterPublicCommentOnServiceDeskRequestDefinition = {
2586
2672
  export const jiraDataCenterCommentJiraTicketDefinition = {
2587
2673
  description: "Comments on a Jira ticket with specified content",
2588
2674
  scopes: ["write:comment:jira"],
2675
+ tags: [],
2589
2676
  parameters: {
2590
2677
  type: "object",
2591
2678
  required: ["projectKey", "issueId", "comment"],
@@ -2628,6 +2715,7 @@ export const jiraDataCenterCommentJiraTicketDefinition = {
2628
2715
  export const jiraDataCenterCreateJiraTicketDefinition = {
2629
2716
  description: "Create a jira ticket with new content specified",
2630
2717
  scopes: [],
2718
+ tags: [],
2631
2719
  parameters: {
2632
2720
  type: "object",
2633
2721
  required: ["projectKey", "summary", "description", "issueType"],
@@ -2691,6 +2779,7 @@ export const jiraDataCenterCreateJiraTicketDefinition = {
2691
2779
  export const jiraDataCenterGetServiceDesksDefinition = {
2692
2780
  description: "Get the service desks for a Jira instance",
2693
2781
  scopes: [],
2782
+ tags: [],
2694
2783
  parameters: {
2695
2784
  type: "object",
2696
2785
  required: [],
@@ -2784,6 +2873,7 @@ export const jiraDataCenterGetServiceDesksDefinition = {
2784
2873
  export const jiraDataCenterCreateServiceDeskRequestDefinition = {
2785
2874
  description: "Create a jira service desk request with specified content",
2786
2875
  scopes: [],
2876
+ tags: [],
2787
2877
  parameters: {
2788
2878
  type: "object",
2789
2879
  required: ["serviceDeskId", "requestTypeId", "summary", "description"],
@@ -2842,6 +2932,7 @@ export const jiraDataCenterCreateServiceDeskRequestDefinition = {
2842
2932
  export const jiraDataCenterGetJiraTicketDetailsDefinition = {
2843
2933
  description: "Get details of a ticket in Jira",
2844
2934
  scopes: ["read:jira-work"],
2935
+ tags: [],
2845
2936
  parameters: {
2846
2937
  type: "object",
2847
2938
  required: ["projectKey", "issueId"],
@@ -2898,6 +2989,7 @@ export const jiraDataCenterGetJiraTicketDetailsDefinition = {
2898
2989
  export const jiraDataCenterGetJiraTicketHistoryDefinition = {
2899
2990
  description: "Get ticket history of a ticket in Jira",
2900
2991
  scopes: ["read:jira-work"],
2992
+ tags: [],
2901
2993
  parameters: {
2902
2994
  type: "object",
2903
2995
  required: ["projectKey", "issueId"],
@@ -2936,6 +3028,7 @@ export const jiraDataCenterGetJiraTicketHistoryDefinition = {
2936
3028
  export const jiraDataCenterUpdateJiraTicketDetailsDefinition = {
2937
3029
  description: "Update a Jira ticket with new content specified",
2938
3030
  scopes: ["write:jira-work"],
3031
+ tags: [],
2939
3032
  parameters: {
2940
3033
  type: "object",
2941
3034
  required: ["projectKey", "issueId"],
@@ -2995,6 +3088,7 @@ export const jiraDataCenterUpdateJiraTicketDetailsDefinition = {
2995
3088
  export const jiraDataCenterUpdateJiraTicketStatusDefinition = {
2996
3089
  description: "Updates the status of Jira ticket with specified status",
2997
3090
  scopes: ["read:jira-work", "write:jira-work"],
3091
+ tags: [],
2998
3092
  parameters: {
2999
3093
  type: "object",
3000
3094
  required: ["projectKey", "issueId", "status"],
@@ -3037,6 +3131,7 @@ export const jiraDataCenterUpdateJiraTicketStatusDefinition = {
3037
3131
  export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
3038
3132
  description: "Retrieve Jira Issues by JQL query",
3039
3133
  scopes: [],
3134
+ tags: [],
3040
3135
  parameters: {
3041
3136
  type: "object",
3042
3137
  required: ["query"],
@@ -3235,6 +3330,7 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
3235
3330
  export const googlemapsValidateAddressDefinition = {
3236
3331
  description: "Validate a Google Maps address",
3237
3332
  scopes: [],
3333
+ tags: [],
3238
3334
  parameters: {
3239
3335
  type: "object",
3240
3336
  required: ["regionCode", "locality", "addressLines", "postalCode"],
@@ -3402,6 +3498,7 @@ export const googlemapsValidateAddressDefinition = {
3402
3498
  export const googlemapsNearbysearchRestaurantsDefinition = {
3403
3499
  description: "Search for nearby places using Google Maps",
3404
3500
  scopes: [],
3501
+ tags: [],
3405
3502
  parameters: {
3406
3503
  type: "object",
3407
3504
  required: ["latitude", "longitude"],
@@ -3469,6 +3566,7 @@ export const googlemapsNearbysearchRestaurantsDefinition = {
3469
3566
  export const bingGetTopNSearchResultUrlsDefinition = {
3470
3567
  description: "Get the top five search result URLs from Bing",
3471
3568
  scopes: [],
3569
+ tags: [],
3472
3570
  parameters: {
3473
3571
  type: "object",
3474
3572
  required: ["query"],
@@ -3516,6 +3614,7 @@ export const bingGetTopNSearchResultUrlsDefinition = {
3516
3614
  export const zendeskCreateZendeskTicketDefinition = {
3517
3615
  description: "Create a ticket in Zendesk",
3518
3616
  scopes: [],
3617
+ tags: [],
3519
3618
  parameters: {
3520
3619
  type: "object",
3521
3620
  required: ["subject", "subdomain"],
@@ -3558,6 +3657,7 @@ export const zendeskCreateZendeskTicketDefinition = {
3558
3657
  export const zendeskListZendeskTicketsDefinition = {
3559
3658
  description: "List tickets in Zendesk from the past 3 months",
3560
3659
  scopes: [],
3660
+ tags: [],
3561
3661
  parameters: {
3562
3662
  type: "object",
3563
3663
  required: ["subdomain"],
@@ -3595,6 +3695,7 @@ export const zendeskListZendeskTicketsDefinition = {
3595
3695
  export const zendeskGetTicketDetailsDefinition = {
3596
3696
  description: "Get details of a ticket in Zendesk",
3597
3697
  scopes: [],
3698
+ tags: [],
3598
3699
  parameters: {
3599
3700
  type: "object",
3600
3701
  required: ["ticketId", "subdomain"],
@@ -3625,6 +3726,7 @@ export const zendeskGetTicketDetailsDefinition = {
3625
3726
  export const zendeskUpdateTicketStatusDefinition = {
3626
3727
  description: "Update the status of a ticket in Zendesk",
3627
3728
  scopes: [],
3729
+ tags: [],
3628
3730
  parameters: {
3629
3731
  type: "object",
3630
3732
  required: ["ticketId", "subdomain", "status"],
@@ -3649,6 +3751,7 @@ export const zendeskUpdateTicketStatusDefinition = {
3649
3751
  export const zendeskAddCommentToTicketDefinition = {
3650
3752
  description: "Add a comment to a ticket in Zendesk",
3651
3753
  scopes: [],
3754
+ tags: [],
3652
3755
  parameters: {
3653
3756
  type: "object",
3654
3757
  required: ["ticketId", "subdomain", "body"],
@@ -3691,6 +3794,7 @@ export const zendeskAddCommentToTicketDefinition = {
3691
3794
  export const zendeskAssignTicketDefinition = {
3692
3795
  description: "Assign a ticket in Zendesk to a specific user",
3693
3796
  scopes: [],
3797
+ tags: [],
3694
3798
  parameters: {
3695
3799
  type: "object",
3696
3800
  required: ["ticketId", "subdomain", "assigneeEmail"],
@@ -3715,6 +3819,7 @@ export const zendeskAssignTicketDefinition = {
3715
3819
  export const zendeskSearchZendeskByQueryDefinition = {
3716
3820
  description: "Search Zendesk objects by query with flexible filtering options",
3717
3821
  scopes: [],
3822
+ tags: [],
3718
3823
  parameters: {
3719
3824
  type: "object",
3720
3825
  required: ["subdomain", "query"],
@@ -3761,6 +3866,7 @@ export const zendeskSearchZendeskByQueryDefinition = {
3761
3866
  export const linkedinCreateShareLinkedinPostUrlDefinition = {
3762
3867
  description: "Create a share linkedin post link",
3763
3868
  scopes: [],
3869
+ tags: [],
3764
3870
  parameters: {
3765
3871
  type: "object",
3766
3872
  required: [],
@@ -3791,6 +3897,7 @@ export const linkedinCreateShareLinkedinPostUrlDefinition = {
3791
3897
  export const xCreateShareXPostUrlDefinition = {
3792
3898
  description: "Create a share X (formerly twitter) post link",
3793
3899
  scopes: [],
3900
+ tags: [],
3794
3901
  parameters: {
3795
3902
  type: "object",
3796
3903
  required: ["text"],
@@ -3836,6 +3943,7 @@ export const xCreateShareXPostUrlDefinition = {
3836
3943
  export const mongoInsertMongoDocDefinition = {
3837
3944
  description: "Insert a document into a MongoDB collection",
3838
3945
  scopes: [],
3946
+ tags: [],
3839
3947
  parameters: {
3840
3948
  type: "object",
3841
3949
  required: ["databaseName", "collectionName", "document"],
@@ -3870,6 +3978,7 @@ export const mongoInsertMongoDocDefinition = {
3870
3978
  export const snowflakeGetRowByFieldValueDefinition = {
3871
3979
  description: "Get a row from a Snowflake table by a field value",
3872
3980
  scopes: [],
3981
+ tags: [],
3873
3982
  parameters: {
3874
3983
  type: "object",
3875
3984
  required: ["tableName", "fieldName", "fieldValue"],
@@ -3926,6 +4035,7 @@ export const snowflakeGetRowByFieldValueDefinition = {
3926
4035
  export const snowflakeRunSnowflakeQueryDefinition = {
3927
4036
  description: "Execute a Snowflake query and return output.",
3928
4037
  scopes: [],
4038
+ tags: [],
3929
4039
  parameters: {
3930
4040
  type: "object",
3931
4041
  required: ["databaseName", "warehouse", "query", "accountName"],
@@ -4002,6 +4112,7 @@ export const snowflakeRunSnowflakeQueryDefinition = {
4002
4112
  export const openstreetmapGetLatitudeLongitudeFromLocationDefinition = {
4003
4113
  description: "Get the latitude and longitude of a location",
4004
4114
  scopes: [],
4115
+ tags: [],
4005
4116
  parameters: {
4006
4117
  type: "object",
4007
4118
  required: ["location"],
@@ -4046,6 +4157,7 @@ export const openstreetmapGetLatitudeLongitudeFromLocationDefinition = {
4046
4157
  export const nwsGetForecastForLocationDefinition = {
4047
4158
  description: "Get the weather forecast for a location using latitude and longitude",
4048
4159
  scopes: [],
4160
+ tags: [],
4049
4161
  parameters: {
4050
4162
  type: "object",
4051
4163
  required: ["latitude", "longitude", "isoDate"],
@@ -4094,6 +4206,7 @@ export const nwsGetForecastForLocationDefinition = {
4094
4206
  export const firecrawlDeepResearchDefinition = {
4095
4207
  description: "Deep research on a topic using Firecrawl",
4096
4208
  scopes: [],
4209
+ tags: [],
4097
4210
  parameters: {
4098
4211
  type: "object",
4099
4212
  required: ["query"],
@@ -4154,6 +4267,7 @@ export const firecrawlDeepResearchDefinition = {
4154
4267
  export const firecrawlScrapeUrlDefinition = {
4155
4268
  description: "Scrape a URL and get website content using Firecrawl",
4156
4269
  scopes: [],
4270
+ tags: [],
4157
4271
  parameters: {
4158
4272
  type: "object",
4159
4273
  required: ["url"],
@@ -4223,6 +4337,7 @@ export const firecrawlScrapeUrlDefinition = {
4223
4337
  export const firecrawlSearchAndScrapeDefinition = {
4224
4338
  description: "Search and scrape the web using Firecrawl",
4225
4339
  scopes: [],
4340
+ tags: [],
4226
4341
  parameters: {
4227
4342
  type: "object",
4228
4343
  required: ["query"],
@@ -4275,6 +4390,7 @@ export const firecrawlSearchAndScrapeDefinition = {
4275
4390
  export const firecrawlGetTopNSearchResultUrlsDefinition = {
4276
4391
  description: "Get the top five search result URLs from Firecrawl",
4277
4392
  scopes: [],
4393
+ tags: [],
4278
4394
  parameters: {
4279
4395
  type: "object",
4280
4396
  required: ["query"],
@@ -4322,6 +4438,7 @@ export const firecrawlGetTopNSearchResultUrlsDefinition = {
4322
4438
  export const firecrawlScrapeTweetDataWithNitterDefinition = {
4323
4439
  description: "Given A tweet URL scrape the tweet data with nitter+firecrawl",
4324
4440
  scopes: [],
4441
+ tags: [],
4325
4442
  parameters: {
4326
4443
  type: "object",
4327
4444
  required: ["tweetUrl"],
@@ -4348,6 +4465,7 @@ export const firecrawlScrapeTweetDataWithNitterDefinition = {
4348
4465
  export const resendSendEmailDefinition = {
4349
4466
  description: "Send an email using Resend",
4350
4467
  scopes: [],
4468
+ tags: [],
4351
4469
  parameters: {
4352
4470
  type: "object",
4353
4471
  required: ["to", "subject", "content"],
@@ -4386,6 +4504,7 @@ export const resendSendEmailDefinition = {
4386
4504
  export const resendSendEmailHtmlDefinition = {
4387
4505
  description: "Send an HTML email using Resend",
4388
4506
  scopes: [],
4507
+ tags: [],
4389
4508
  parameters: {
4390
4509
  type: "object",
4391
4510
  required: ["to", "subject", "content"],
@@ -4424,6 +4543,7 @@ export const resendSendEmailHtmlDefinition = {
4424
4543
  export const googleOauthCreateNewGoogleDocDefinition = {
4425
4544
  description: "Create a new Google Docs document using OAuth authentication",
4426
4545
  scopes: [],
4546
+ tags: [],
4427
4547
  parameters: {
4428
4548
  type: "object",
4429
4549
  required: ["title"],
@@ -4462,6 +4582,7 @@ export const googleOauthCreateNewGoogleDocDefinition = {
4462
4582
  export const googleOauthUpdateDocDefinition = {
4463
4583
  description: "Update an existing Google Docs document using OAuth authentication with batch requests",
4464
4584
  scopes: [],
4585
+ tags: [],
4465
4586
  parameters: {
4466
4587
  type: "object",
4467
4588
  required: ["documentId"],
@@ -5573,6 +5694,7 @@ export const googleOauthUpdateDocDefinition = {
5573
5694
  export const googleOauthScheduleCalendarMeetingDefinition = {
5574
5695
  description: "Schedule a meeting on google calendar using OAuth authentication",
5575
5696
  scopes: [],
5697
+ tags: [],
5576
5698
  parameters: {
5577
5699
  type: "object",
5578
5700
  required: ["calendarId", "name", "start", "end"],
@@ -5689,6 +5811,7 @@ export const googleOauthScheduleCalendarMeetingDefinition = {
5689
5811
  export const googleOauthListCalendarsDefinition = {
5690
5812
  description: "List all Google Calendars for the authenticated user",
5691
5813
  scopes: ["https://www.googleapis.com/auth/calendar.readonly"],
5814
+ tags: [],
5692
5815
  parameters: {
5693
5816
  type: "object",
5694
5817
  required: [],
@@ -5737,6 +5860,7 @@ export const googleOauthListCalendarsDefinition = {
5737
5860
  export const googleOauthListCalendarEventsDefinition = {
5738
5861
  description: "List events on a Google Calendar, optionally searching by query.",
5739
5862
  scopes: ["https://www.googleapis.com/auth/calendar.readonly"],
5863
+ tags: [],
5740
5864
  parameters: {
5741
5865
  type: "object",
5742
5866
  required: ["calendarId"],
@@ -5884,6 +6008,7 @@ export const googleOauthListCalendarEventsDefinition = {
5884
6008
  export const googleOauthUpdateCalendarEventDefinition = {
5885
6009
  description: "Update an event on a Google Calendar using OAuth authentication",
5886
6010
  scopes: ["https://www.googleapis.com/auth/calendar"],
6011
+ tags: [],
5887
6012
  parameters: {
5888
6013
  type: "object",
5889
6014
  required: ["calendarId", "eventId"],
@@ -5982,6 +6107,7 @@ export const googleOauthUpdateCalendarEventDefinition = {
5982
6107
  export const googleOauthEditAGoogleCalendarEventDefinition = {
5983
6108
  description: "Edit an existing Google Calendar event using OAuth authentication",
5984
6109
  scopes: ["https://www.googleapis.com/auth/calendar"],
6110
+ tags: [],
5985
6111
  parameters: {
5986
6112
  type: "object",
5987
6113
  required: ["calendarId", "eventId"],
@@ -6078,6 +6204,7 @@ export const googleOauthEditAGoogleCalendarEventDefinition = {
6078
6204
  export const googleOauthDeleteCalendarEventDefinition = {
6079
6205
  description: "Delete an event from a Google Calendar using OAuth authentication",
6080
6206
  scopes: ["https://www.googleapis.com/auth/calendar"],
6207
+ tags: [],
6081
6208
  parameters: {
6082
6209
  type: "object",
6083
6210
  required: ["calendarId", "eventId"],
@@ -6112,6 +6239,7 @@ export const googleOauthDeleteCalendarEventDefinition = {
6112
6239
  export const googleOauthCreateSpreadsheetDefinition = {
6113
6240
  description: "Create a new Google Spreadsheet using OAuth authentication",
6114
6241
  scopes: [],
6242
+ tags: [],
6115
6243
  parameters: {
6116
6244
  type: "object",
6117
6245
  required: ["title"],
@@ -6224,6 +6352,7 @@ export const googleOauthCreateSpreadsheetDefinition = {
6224
6352
  export const googleOauthUpdateSpreadsheetDefinition = {
6225
6353
  description: "Update a Google Spreadsheet with new content specified",
6226
6354
  scopes: [],
6355
+ tags: [],
6227
6356
  parameters: {
6228
6357
  type: "object",
6229
6358
  required: ["spreadsheetId", "requests"],
@@ -6241,6 +6370,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
6241
6370
  {
6242
6371
  type: "object",
6243
6372
  description: "Add or update a sheet",
6373
+ required: ["addSheet"],
6244
6374
  properties: {
6245
6375
  addSheet: {
6246
6376
  type: "object",
@@ -6274,6 +6404,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
6274
6404
  {
6275
6405
  type: "object",
6276
6406
  description: "Delete a sheet",
6407
+ required: ["deleteSheet"],
6277
6408
  properties: {
6278
6409
  deleteSheet: {
6279
6410
  type: "object",
@@ -6289,6 +6420,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
6289
6420
  {
6290
6421
  type: "object",
6291
6422
  description: "Update cells in a range",
6423
+ required: ["updateCells"],
6292
6424
  properties: {
6293
6425
  updateCells: {
6294
6426
  type: "object",
@@ -6358,6 +6490,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
6358
6490
  {
6359
6491
  type: "object",
6360
6492
  description: "Update sheet properties",
6493
+ required: ["updateSheetProperties"],
6361
6494
  properties: {
6362
6495
  updateSheetProperties: {
6363
6496
  type: "object",
@@ -6407,6 +6540,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
6407
6540
  {
6408
6541
  type: "object",
6409
6542
  description: "Update spreadsheet properties",
6543
+ required: ["updateSpreadsheetProperties"],
6410
6544
  properties: {
6411
6545
  updateSpreadsheetProperties: {
6412
6546
  type: "object",
@@ -6607,6 +6741,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
6607
6741
  export const googleOauthCreatePresentationDefinition = {
6608
6742
  description: "Create a Google Presentation",
6609
6743
  scopes: [],
6744
+ tags: [],
6610
6745
  parameters: {
6611
6746
  type: "object",
6612
6747
  required: ["title"],
@@ -6680,6 +6815,7 @@ export const googleOauthCreatePresentationDefinition = {
6680
6815
  export const googleOauthUpdatePresentationDefinition = {
6681
6816
  description: "Update a Google Presentation",
6682
6817
  scopes: [],
6818
+ tags: [],
6683
6819
  parameters: {
6684
6820
  type: "object",
6685
6821
  required: ["presentationId", "requests"],
@@ -7969,6 +8105,7 @@ export const googleOauthUpdatePresentationDefinition = {
7969
8105
  export const googleOauthGetPresentationDefinition = {
7970
8106
  description: "Get a presentation by ID",
7971
8107
  scopes: ["slides.readonly"],
8108
+ tags: [],
7972
8109
  parameters: {
7973
8110
  type: "object",
7974
8111
  required: ["presentationId"],
@@ -8025,6 +8162,7 @@ export const googleOauthGetPresentationDefinition = {
8025
8162
  export const googleOauthSearchDriveByKeywordsDefinition = {
8026
8163
  description: "Search Google Drive files that contain one or more keywords in their full text.",
8027
8164
  scopes: ["drive.readonly"],
8165
+ tags: [],
8028
8166
  parameters: {
8029
8167
  type: "object",
8030
8168
  required: ["keywords"],
@@ -8092,6 +8230,7 @@ export const googleOauthSearchDriveByKeywordsDefinition = {
8092
8230
  export const googleOauthSearchDriveByQueryDefinition = {
8093
8231
  description: "Search Google Drive files based on a google drive query provided.",
8094
8232
  scopes: ["drive.readonly"],
8233
+ tags: [],
8095
8234
  parameters: {
8096
8235
  type: "object",
8097
8236
  required: ["query", "searchDriveByDrive"],
@@ -8164,6 +8303,7 @@ export const googleOauthSearchDriveByQueryDefinition = {
8164
8303
  export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
8165
8304
  description: "Search Google Drive with keywords and get resulting content",
8166
8305
  scopes: ["drive.readonly"],
8306
+ tags: [],
8167
8307
  parameters: {
8168
8308
  type: "object",
8169
8309
  required: ["searchQuery", "searchDriveByDrive"],
@@ -8259,6 +8399,7 @@ export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
8259
8399
  export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
8260
8400
  description: "Search Google Drive with Google Drive query syntax and get resulting content",
8261
8401
  scopes: ["drive.readonly"],
8402
+ tags: [],
8262
8403
  parameters: {
8263
8404
  type: "object",
8264
8405
  required: ["query", "searchDriveByDrive"],
@@ -8339,6 +8480,7 @@ export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
8339
8480
  export const googleOauthGetDriveFileContentByIdDefinition = {
8340
8481
  description: "Get text content of a Google Drive file by its ID.",
8341
8482
  scopes: ["drive.readonly"],
8483
+ tags: [],
8342
8484
  parameters: {
8343
8485
  type: "object",
8344
8486
  required: ["fileId"],
@@ -8417,6 +8559,7 @@ export const googleOauthGetDriveFileContentByIdDefinition = {
8417
8559
  export const googleOauthListGroupsDefinition = {
8418
8560
  description: "List all Google Groups for the customer.",
8419
8561
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.readonly"],
8562
+ tags: [],
8420
8563
  parameters: {
8421
8564
  type: "object",
8422
8565
  required: [],
@@ -8473,6 +8616,7 @@ export const googleOauthListGroupsDefinition = {
8473
8616
  export const googleOauthGetGroupDefinition = {
8474
8617
  description: "Get details for a specific Google Group by group email or ID.",
8475
8618
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.readonly"],
8619
+ tags: [],
8476
8620
  parameters: {
8477
8621
  type: "object",
8478
8622
  required: ["groupKey"],
@@ -8525,6 +8669,7 @@ export const googleOauthGetGroupDefinition = {
8525
8669
  export const googleOauthListGroupMembersDefinition = {
8526
8670
  description: "List all members of a Google Group.",
8527
8671
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.member.readonly"],
8672
+ tags: [],
8528
8673
  parameters: {
8529
8674
  type: "object",
8530
8675
  required: ["groupKey"],
@@ -8585,6 +8730,7 @@ export const googleOauthListGroupMembersDefinition = {
8585
8730
  export const googleOauthHasGroupMemberDefinition = {
8586
8731
  description: "Check if a user is a member of a Google Group.",
8587
8732
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.member.readonly"],
8733
+ tags: [],
8588
8734
  parameters: {
8589
8735
  type: "object",
8590
8736
  required: ["groupKey", "memberKey"],
@@ -8623,6 +8769,7 @@ export const googleOauthHasGroupMemberDefinition = {
8623
8769
  export const googleOauthAddGroupMemberDefinition = {
8624
8770
  description: "Add a member to a Google Group.",
8625
8771
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.member"],
8772
+ tags: [],
8626
8773
  parameters: {
8627
8774
  type: "object",
8628
8775
  required: ["groupKey", "email"],
@@ -8661,6 +8808,7 @@ export const googleOauthAddGroupMemberDefinition = {
8661
8808
  export const googleOauthDeleteGroupMemberDefinition = {
8662
8809
  description: "Remove a member from a Google Group.",
8663
8810
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.member"],
8811
+ tags: [],
8664
8812
  parameters: {
8665
8813
  type: "object",
8666
8814
  required: ["groupKey", "memberKey"],
@@ -8695,6 +8843,7 @@ export const googleOauthDeleteGroupMemberDefinition = {
8695
8843
  export const googleOauthQueryGoogleBigQueryDefinition = {
8696
8844
  description: "Execute read only SQL queries on Google BigQuery datasets",
8697
8845
  scopes: ["https://www.googleapis.com/auth/bigquery.readonly"],
8846
+ tags: [],
8698
8847
  parameters: {
8699
8848
  type: "object",
8700
8849
  required: ["query", "projectId"],
@@ -8774,6 +8923,7 @@ export const googleOauthQueryGoogleBigQueryDefinition = {
8774
8923
  export const googlemailSearchGmailMessagesDefinition = {
8775
8924
  description: "Search Gmail messages in a user's inbox using a query string.",
8776
8925
  scopes: ["https://www.googleapis.com/auth/gmail.readonly"],
8926
+ tags: [],
8777
8927
  parameters: {
8778
8928
  type: "object",
8779
8929
  required: ["query"],
@@ -8890,6 +9040,7 @@ export const googlemailSearchGmailMessagesDefinition = {
8890
9040
  export const googlemailListGmailThreadsDefinition = {
8891
9041
  description: "List Gmail threads in a user's inbox using a query string.",
8892
9042
  scopes: ["https://www.googleapis.com/auth/gmail.readonly"],
9043
+ tags: [],
8893
9044
  parameters: {
8894
9045
  type: "object",
8895
9046
  required: ["query"],
@@ -8972,6 +9123,7 @@ export const googlemailListGmailThreadsDefinition = {
8972
9123
  export const googlemailSendGmailDefinition = {
8973
9124
  description: "Send an email through Gmail with support for to, cc, bcc, subject, and content.",
8974
9125
  scopes: ["https://www.googleapis.com/auth/gmail.send"],
9126
+ tags: [],
8975
9127
  parameters: {
8976
9128
  type: "object",
8977
9129
  required: ["to", "subject", "content"],
@@ -9035,6 +9187,7 @@ export const googlemailSendGmailDefinition = {
9035
9187
  export const googleSearchCustomSearchDefinition = {
9036
9188
  description: "Search for information using the Google Custom Search API",
9037
9189
  scopes: [],
9190
+ tags: [],
9038
9191
  parameters: {
9039
9192
  type: "object",
9040
9193
  required: ["query", "customSearchEngineId"],
@@ -9141,6 +9294,7 @@ export const googleSearchCustomSearchDefinition = {
9141
9294
  export const oktaOrgGetOktaUserByNameDefinition = {
9142
9295
  description: "Retrieve details of a specific Okta user by their name.",
9143
9296
  scopes: ["okta.users.read"],
9297
+ tags: [],
9144
9298
  parameters: {
9145
9299
  type: "object",
9146
9300
  required: ["name"],
@@ -9197,6 +9351,7 @@ export const oktaOrgGetOktaUserByNameDefinition = {
9197
9351
  export const finnhubSymbolLookupDefinition = {
9198
9352
  description: "Look up a stock symbol by name",
9199
9353
  scopes: [],
9354
+ tags: [],
9200
9355
  parameters: {
9201
9356
  type: "object",
9202
9357
  required: ["query"],
@@ -9237,6 +9392,7 @@ export const finnhubSymbolLookupDefinition = {
9237
9392
  export const finnhubGetBasicFinancialsDefinition = {
9238
9393
  description: "Get company basic financials such as margin, P/E ratio, 52-week high/low etc.",
9239
9394
  scopes: [],
9395
+ tags: [],
9240
9396
  parameters: {
9241
9397
  type: "object",
9242
9398
  required: ["symbol"],
@@ -9329,6 +9485,7 @@ export const finnhubGetBasicFinancialsDefinition = {
9329
9485
  export const lookerEnableUserByEmailDefinition = {
9330
9486
  description: "Search for a Looker user by email and enable them if disabled",
9331
9487
  scopes: [],
9488
+ tags: [],
9332
9489
  parameters: {
9333
9490
  type: "object",
9334
9491
  required: ["userEmail"],
@@ -9390,6 +9547,7 @@ export const lookerEnableUserByEmailDefinition = {
9390
9547
  export const salesforceUpdateRecordDefinition = {
9391
9548
  description: "Update a record in Salesforce",
9392
9549
  scopes: [],
9550
+ tags: [],
9393
9551
  parameters: {
9394
9552
  type: "object",
9395
9553
  required: ["objectType", "recordId", "fieldsToUpdate"],
@@ -9431,6 +9589,7 @@ export const salesforceUpdateRecordDefinition = {
9431
9589
  export const salesforceCreateRecordDefinition = {
9432
9590
  description: "Create a record in Salesforce",
9433
9591
  scopes: [],
9592
+ tags: [],
9434
9593
  parameters: {
9435
9594
  type: "object",
9436
9595
  required: ["objectType"],
@@ -9472,6 +9631,7 @@ export const salesforceCreateRecordDefinition = {
9472
9631
  export const salesforceCreateCaseDefinition = {
9473
9632
  description: "Create a case or support ticket in Salesforce",
9474
9633
  scopes: [],
9634
+ tags: [],
9475
9635
  parameters: {
9476
9636
  type: "object",
9477
9637
  required: ["subject", "description", "priority", "origin"],
@@ -9525,6 +9685,7 @@ export const salesforceCreateCaseDefinition = {
9525
9685
  export const salesforceGenerateSalesReportDefinition = {
9526
9686
  description: "Generate a sales report from Salesforce",
9527
9687
  scopes: [],
9688
+ tags: [],
9528
9689
  parameters: {
9529
9690
  type: "object",
9530
9691
  required: ["startDate", "endDate"],
@@ -9577,6 +9738,7 @@ export const salesforceGenerateSalesReportDefinition = {
9577
9738
  export const salesforceSearchAllSalesforceRecordsDefinition = {
9578
9739
  description: "Search for all Salesforce records by keyword",
9579
9740
  scopes: [],
9741
+ tags: [],
9580
9742
  parameters: {
9581
9743
  type: "object",
9582
9744
  required: ["keyword"],
@@ -9664,6 +9826,7 @@ export const salesforceSearchAllSalesforceRecordsDefinition = {
9664
9826
  export const salesforceSearchSalesforceRecordsDefinition = {
9665
9827
  description: "Search for Salesforce records by keyword",
9666
9828
  scopes: [],
9829
+ tags: [],
9667
9830
  parameters: {
9668
9831
  type: "object",
9669
9832
  required: ["keyword", "recordType", "fieldsToSearch"],
@@ -9758,6 +9921,7 @@ export const salesforceSearchSalesforceRecordsDefinition = {
9758
9921
  export const salesforceGetSalesforceRecordsByQueryDefinition = {
9759
9922
  description: "Retrieve Salesforce records by SOQL query",
9760
9923
  scopes: [],
9924
+ tags: [],
9761
9925
  parameters: {
9762
9926
  type: "object",
9763
9927
  required: ["query"],
@@ -9813,6 +9977,7 @@ export const salesforceGetSalesforceRecordsByQueryDefinition = {
9813
9977
  export const salesforceGetRecordDefinition = {
9814
9978
  description: "Retrieve a record from Salesforce",
9815
9979
  scopes: [],
9980
+ tags: [],
9816
9981
  parameters: {
9817
9982
  type: "object",
9818
9983
  required: ["objectType", "recordId"],
@@ -9854,6 +10019,7 @@ export const salesforceGetRecordDefinition = {
9854
10019
  export const microsoftCreateDocumentDefinition = {
9855
10020
  description: "Creates a new Office365 document",
9856
10021
  scopes: ["Files.ReadWrite", "Sites.Manage.All", "Sites.ReadWrite.All"],
10022
+ tags: [],
9857
10023
  parameters: {
9858
10024
  type: "object",
9859
10025
  required: ["name", "content"],
@@ -9908,6 +10074,7 @@ export const microsoftCreateDocumentDefinition = {
9908
10074
  export const microsoftUpdateDocumentDefinition = {
9909
10075
  description: "Updates a Office365 document",
9910
10076
  scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
10077
+ tags: [],
9911
10078
  parameters: {
9912
10079
  type: "object",
9913
10080
  required: ["documentId", "content"],
@@ -9950,6 +10117,7 @@ export const microsoftUpdateDocumentDefinition = {
9950
10117
  export const microsoftUpdateSpreadsheetDefinition = {
9951
10118
  description: "Updates a Microsoft Excel spreadsheet",
9952
10119
  scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
10120
+ tags: [],
9953
10121
  parameters: {
9954
10122
  type: "object",
9955
10123
  required: ["spreadsheetId", "range", "values"],
@@ -10002,6 +10170,7 @@ export const microsoftUpdateSpreadsheetDefinition = {
10002
10170
  export const microsoftMessageTeamsChatDefinition = {
10003
10171
  description: "Sends a message to a Microsoft Teams chat",
10004
10172
  scopes: ["ChatMessage.Send"],
10173
+ tags: [],
10005
10174
  parameters: {
10006
10175
  type: "object",
10007
10176
  required: ["chatId", "message"],
@@ -10040,6 +10209,7 @@ export const microsoftMessageTeamsChatDefinition = {
10040
10209
  export const microsoftMessageTeamsChannelDefinition = {
10041
10210
  description: "Sends a message to a Microsoft Teams channel",
10042
10211
  scopes: ["ChannelMessage.Send"],
10212
+ tags: [],
10043
10213
  parameters: {
10044
10214
  type: "object",
10045
10215
  required: ["teamId", "channelId", "message"],
@@ -10082,6 +10252,7 @@ export const microsoftMessageTeamsChannelDefinition = {
10082
10252
  export const microsoftGetDocumentDefinition = {
10083
10253
  description: "Retrieves the content of a Microsoft Office document",
10084
10254
  scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
10255
+ tags: [],
10085
10256
  parameters: {
10086
10257
  type: "object",
10087
10258
  required: ["documentId"],
@@ -10120,6 +10291,7 @@ export const microsoftGetDocumentDefinition = {
10120
10291
  export const githubCreateOrUpdateFileDefinition = {
10121
10292
  description: "Create or update a file in a GitHub repository",
10122
10293
  scopes: [],
10294
+ tags: [],
10123
10295
  parameters: {
10124
10296
  type: "object",
10125
10297
  required: ["repositoryOwner", "repositoryName", "filePath", "branch", "fileContent", "commitMessage"],
@@ -10127,10 +10299,12 @@ export const githubCreateOrUpdateFileDefinition = {
10127
10299
  repositoryOwner: {
10128
10300
  type: "string",
10129
10301
  description: "The owner of the repository",
10302
+ tags: ["recommend-predefined"],
10130
10303
  },
10131
10304
  repositoryName: {
10132
10305
  type: "string",
10133
10306
  description: "The name of the repository",
10307
+ tags: ["recommend-predefined"],
10134
10308
  },
10135
10309
  filePath: {
10136
10310
  type: "string",
@@ -10183,6 +10357,7 @@ export const githubCreateOrUpdateFileDefinition = {
10183
10357
  export const githubCreateBranchDefinition = {
10184
10358
  description: "Create a new branch in a GitHub repository",
10185
10359
  scopes: [],
10360
+ tags: [],
10186
10361
  parameters: {
10187
10362
  type: "object",
10188
10363
  required: ["repositoryOwner", "repositoryName", "branchName", "baseRefOrHash"],
@@ -10190,10 +10365,12 @@ export const githubCreateBranchDefinition = {
10190
10365
  repositoryOwner: {
10191
10366
  type: "string",
10192
10367
  description: "The owner of the repository",
10368
+ tags: ["recommend-predefined"],
10193
10369
  },
10194
10370
  repositoryName: {
10195
10371
  type: "string",
10196
10372
  description: "The name of the repository",
10373
+ tags: ["recommend-predefined"],
10197
10374
  },
10198
10375
  branchName: {
10199
10376
  type: "string",
@@ -10225,6 +10402,7 @@ export const githubCreateBranchDefinition = {
10225
10402
  export const githubCreatePullRequestDefinition = {
10226
10403
  description: "Create a pull request in a GitHub repository",
10227
10404
  scopes: [],
10405
+ tags: [],
10228
10406
  parameters: {
10229
10407
  type: "object",
10230
10408
  required: ["repositoryOwner", "repositoryName", "head", "base", "title"],
@@ -10232,10 +10410,12 @@ export const githubCreatePullRequestDefinition = {
10232
10410
  repositoryOwner: {
10233
10411
  type: "string",
10234
10412
  description: "The owner of the repository",
10413
+ tags: ["recommend-predefined"],
10235
10414
  },
10236
10415
  repositoryName: {
10237
10416
  type: "string",
10238
10417
  description: "The name of the repository",
10418
+ tags: ["recommend-predefined"],
10239
10419
  },
10240
10420
  head: {
10241
10421
  type: "string",
@@ -10283,6 +10463,7 @@ export const githubCreatePullRequestDefinition = {
10283
10463
  export const githubListPullRequestsDefinition = {
10284
10464
  description: "List pull requests in a GitHub repository",
10285
10465
  scopes: [],
10466
+ tags: [],
10286
10467
  parameters: {
10287
10468
  type: "object",
10288
10469
  required: ["repositoryOwner", "repositoryName"],
@@ -10290,10 +10471,12 @@ export const githubListPullRequestsDefinition = {
10290
10471
  repositoryOwner: {
10291
10472
  type: "string",
10292
10473
  description: "The owner of the repository",
10474
+ tags: ["recommend-predefined"],
10293
10475
  },
10294
10476
  repositoryName: {
10295
10477
  type: "string",
10296
10478
  description: "The name of the repository",
10479
+ tags: ["recommend-predefined"],
10297
10480
  },
10298
10481
  state: {
10299
10482
  type: "string",
@@ -10380,6 +10563,7 @@ export const githubListPullRequestsDefinition = {
10380
10563
  export const githubGetPullRequestDetailsDefinition = {
10381
10564
  description: "Get detailed information about a specific pull request including description, files, reviews, and status",
10382
10565
  scopes: [],
10566
+ tags: [],
10383
10567
  parameters: {
10384
10568
  type: "object",
10385
10569
  required: ["repositoryOwner", "repositoryName", "pullRequestNumber"],
@@ -10387,10 +10571,12 @@ export const githubGetPullRequestDetailsDefinition = {
10387
10571
  repositoryOwner: {
10388
10572
  type: "string",
10389
10573
  description: "The owner of the repository",
10574
+ tags: ["recommend-predefined"],
10390
10575
  },
10391
10576
  repositoryName: {
10392
10577
  type: "string",
10393
10578
  description: "The name of the repository",
10579
+ tags: ["recommend-predefined"],
10394
10580
  },
10395
10581
  pullRequestNumber: {
10396
10582
  type: "number",
@@ -10657,6 +10843,7 @@ export const githubGetPullRequestDetailsDefinition = {
10657
10843
  export const githubGetFileContentDefinition = {
10658
10844
  description: "Get specified file content from a GitHub repository",
10659
10845
  scopes: [],
10846
+ tags: [],
10660
10847
  parameters: {
10661
10848
  type: "object",
10662
10849
  required: ["organization", "repository", "path"],
@@ -10664,10 +10851,12 @@ export const githubGetFileContentDefinition = {
10664
10851
  organization: {
10665
10852
  type: "string",
10666
10853
  description: "The organization that owns the repository",
10854
+ tags: ["recommend-predefined"],
10667
10855
  },
10668
10856
  repository: {
10669
10857
  type: "string",
10670
10858
  description: "The repository name",
10859
+ tags: ["recommend-predefined"],
10671
10860
  },
10672
10861
  path: {
10673
10862
  type: "string",
@@ -10733,6 +10922,7 @@ export const githubGetFileContentDefinition = {
10733
10922
  export const githubListDirectoryDefinition = {
10734
10923
  description: "List directory contents of a path in a GitHub repository",
10735
10924
  scopes: [],
10925
+ tags: [],
10736
10926
  parameters: {
10737
10927
  type: "object",
10738
10928
  required: ["organization", "repository", "path"],
@@ -10740,10 +10930,12 @@ export const githubListDirectoryDefinition = {
10740
10930
  organization: {
10741
10931
  type: "string",
10742
10932
  description: "The organization that owns the repository",
10933
+ tags: ["recommend-predefined"],
10743
10934
  },
10744
10935
  repository: {
10745
10936
  type: "string",
10746
10937
  description: "The repository name",
10938
+ tags: ["recommend-predefined"],
10747
10939
  },
10748
10940
  path: {
10749
10941
  type: "string",
@@ -10808,6 +11000,7 @@ export const githubListDirectoryDefinition = {
10808
11000
  export const githubSearchRepositoryDefinition = {
10809
11001
  description: "Search for code, issues and pull requests within a repository in a GitHub organization",
10810
11002
  scopes: [],
11003
+ tags: [],
10811
11004
  parameters: {
10812
11005
  type: "object",
10813
11006
  required: ["organization", "repository", "query"],
@@ -10815,10 +11008,12 @@ export const githubSearchRepositoryDefinition = {
10815
11008
  organization: {
10816
11009
  type: "string",
10817
11010
  description: "The organization to search for data in",
11011
+ tags: ["recommend-predefined"],
10818
11012
  },
10819
11013
  repository: {
10820
11014
  type: "string",
10821
11015
  description: "The repository to search for data in",
11016
+ tags: ["recommend-predefined"],
10822
11017
  },
10823
11018
  query: {
10824
11019
  type: "string",
@@ -11043,6 +11238,7 @@ export const githubSearchRepositoryDefinition = {
11043
11238
  export const githubSearchOrganizationDefinition = {
11044
11239
  description: "Search for code, issues and pull requests within a GitHub organization",
11045
11240
  scopes: [],
11241
+ tags: [],
11046
11242
  parameters: {
11047
11243
  type: "object",
11048
11244
  required: ["organization", "query"],
@@ -11050,6 +11246,7 @@ export const githubSearchOrganizationDefinition = {
11050
11246
  organization: {
11051
11247
  type: "string",
11052
11248
  description: "The organization to search for data in",
11249
+ tags: ["recommend-predefined"],
11053
11250
  },
11054
11251
  query: {
11055
11252
  type: "string",
@@ -11333,6 +11530,7 @@ export const githubSearchOrganizationDefinition = {
11333
11530
  export const githubGetBranchDefinition = {
11334
11531
  description: "Get a branch in a GitHub repository",
11335
11532
  scopes: [],
11533
+ tags: [],
11336
11534
  parameters: {
11337
11535
  type: "object",
11338
11536
  required: ["repositoryOwner", "repositoryName", "branchName"],
@@ -11340,10 +11538,12 @@ export const githubGetBranchDefinition = {
11340
11538
  repositoryOwner: {
11341
11539
  type: "string",
11342
11540
  description: "The owner of the repository",
11541
+ tags: ["recommend-predefined"],
11343
11542
  },
11344
11543
  repositoryName: {
11345
11544
  type: "string",
11346
11545
  description: "The name of the repository",
11546
+ tags: ["recommend-predefined"],
11347
11547
  },
11348
11548
  branchName: {
11349
11549
  type: "string",
@@ -11589,6 +11789,7 @@ export const githubGetBranchDefinition = {
11589
11789
  export const githubListCommitsDefinition = {
11590
11790
  description: "List commits in a GitHub repository with optional date filtering and pagination",
11591
11791
  scopes: [],
11792
+ tags: [],
11592
11793
  parameters: {
11593
11794
  type: "object",
11594
11795
  required: ["repositoryOwner", "repositoryName"],
@@ -11596,10 +11797,12 @@ export const githubListCommitsDefinition = {
11596
11797
  repositoryOwner: {
11597
11798
  type: "string",
11598
11799
  description: "The owner of the repository",
11800
+ tags: ["recommend-predefined"],
11599
11801
  },
11600
11802
  repositoryName: {
11601
11803
  type: "string",
11602
11804
  description: "The name of the repository",
11805
+ tags: ["recommend-predefined"],
11603
11806
  },
11604
11807
  branch: {
11605
11808
  type: "string",
@@ -11773,6 +11976,7 @@ export const githubListCommitsDefinition = {
11773
11976
  export const notionSearchByTitleDefinition = {
11774
11977
  description: "Search Notion pages and databases by title",
11775
11978
  scopes: [],
11979
+ tags: [],
11776
11980
  parameters: {
11777
11981
  type: "object",
11778
11982
  required: ["query"],
@@ -11826,6 +12030,7 @@ export const notionSearchByTitleDefinition = {
11826
12030
  export const gitlabSearchGroupDefinition = {
11827
12031
  description: "Searches gitlab for details about a query. This will return a list of merge requests and blobs that match the query.",
11828
12032
  scopes: [],
12033
+ tags: [],
11829
12034
  parameters: {
11830
12035
  type: "object",
11831
12036
  required: ["query", "groupId"],
@@ -12111,6 +12316,7 @@ export const gitlabSearchGroupDefinition = {
12111
12316
  export const gitlabGetFileContentDefinition = {
12112
12317
  description: "Get specified file content from a GitLab repository",
12113
12318
  scopes: [],
12319
+ tags: [],
12114
12320
  parameters: {
12115
12321
  type: "object",
12116
12322
  required: ["project_id", "path"],
@@ -12189,6 +12395,7 @@ export const gitlabGetFileContentDefinition = {
12189
12395
  export const gitlabGetMergeRequestDefinition = {
12190
12396
  description: "Get specified merge request from a GitLab repository",
12191
12397
  scopes: [],
12398
+ tags: [],
12192
12399
  parameters: {
12193
12400
  type: "object",
12194
12401
  required: ["mr_iid"],
@@ -12410,6 +12617,7 @@ export const gitlabGetMergeRequestDefinition = {
12410
12617
  export const gitlabListDirectoryDefinition = {
12411
12618
  description: "List directory contents of a path in a GitLab repository",
12412
12619
  scopes: [],
12620
+ tags: [],
12413
12621
  parameters: {
12414
12622
  type: "object",
12415
12623
  required: ["group", "project", "path"],
@@ -12497,6 +12705,7 @@ export const gitlabListDirectoryDefinition = {
12497
12705
  export const linearGetIssuesDefinition = {
12498
12706
  description: "Get Linear issues with optional query filter",
12499
12707
  scopes: [],
12708
+ tags: [],
12500
12709
  parameters: {
12501
12710
  type: "object",
12502
12711
  required: [],
@@ -12626,6 +12835,7 @@ export const linearGetIssuesDefinition = {
12626
12835
  export const linearGetIssueDetailsDefinition = {
12627
12836
  description: "Get detailed information about a Linear issue",
12628
12837
  scopes: [],
12838
+ tags: [],
12629
12839
  parameters: {
12630
12840
  type: "object",
12631
12841
  required: ["issueId"],
@@ -12786,6 +12996,7 @@ export const linearGetIssueDetailsDefinition = {
12786
12996
  export const linearGetProjectsDefinition = {
12787
12997
  description: "Get all Linear projects",
12788
12998
  scopes: [],
12999
+ tags: [],
12789
13000
  parameters: {
12790
13001
  type: "object",
12791
13002
  required: [],
@@ -12883,6 +13094,7 @@ export const linearGetProjectsDefinition = {
12883
13094
  export const linearGetProjectDetailsDefinition = {
12884
13095
  description: "Get detailed information about a Linear project",
12885
13096
  scopes: [],
13097
+ tags: [],
12886
13098
  parameters: {
12887
13099
  type: "object",
12888
13100
  required: ["projectId"],
@@ -13029,6 +13241,7 @@ export const linearGetProjectDetailsDefinition = {
13029
13241
  export const linearGetTeamDetailsDefinition = {
13030
13242
  description: "Get detailed information about a Linear team",
13031
13243
  scopes: [],
13244
+ tags: [],
13032
13245
  parameters: {
13033
13246
  type: "object",
13034
13247
  required: ["teamId"],
@@ -13095,6 +13308,7 @@ export const linearGetTeamDetailsDefinition = {
13095
13308
  export const linearGetTeamsDefinition = {
13096
13309
  description: "Get all teams in Linear",
13097
13310
  scopes: [],
13311
+ tags: [],
13098
13312
  parameters: {
13099
13313
  type: "object",
13100
13314
  required: [],
@@ -13137,6 +13351,7 @@ export const linearGetTeamsDefinition = {
13137
13351
  export const hubspotGetContactsDefinition = {
13138
13352
  description: "List or search HubSpot contacts by optional query",
13139
13353
  scopes: ["oauth crm.objects.contacts.read"],
13354
+ tags: [],
13140
13355
  parameters: {
13141
13356
  type: "object",
13142
13357
  required: [],
@@ -13200,6 +13415,7 @@ export const hubspotGetContactsDefinition = {
13200
13415
  export const hubspotGetContactDetailsDefinition = {
13201
13416
  description: "Get detailed information about a specific HubSpot contact",
13202
13417
  scopes: ["oauth crm.objects.contacts.read"],
13418
+ tags: [],
13203
13419
  parameters: {
13204
13420
  type: "object",
13205
13421
  required: ["contactId"],
@@ -13300,6 +13516,7 @@ export const hubspotGetContactDetailsDefinition = {
13300
13516
  export const hubspotGetCompaniesDefinition = {
13301
13517
  description: "List or search HubSpot companies by optional query",
13302
13518
  scopes: ["oauth crm.objects.companies.read"],
13519
+ tags: [],
13303
13520
  parameters: {
13304
13521
  type: "object",
13305
13522
  required: [],
@@ -13359,6 +13576,7 @@ export const hubspotGetCompaniesDefinition = {
13359
13576
  export const hubspotGetCompanyDetailsDefinition = {
13360
13577
  description: "Get detailed information about a specific HubSpot company",
13361
13578
  scopes: ["oauth crm.objects.companies.read"],
13579
+ tags: [],
13362
13580
  parameters: {
13363
13581
  type: "object",
13364
13582
  required: ["companyId"],
@@ -13451,6 +13669,7 @@ export const hubspotGetCompanyDetailsDefinition = {
13451
13669
  export const hubspotGetDealsDefinition = {
13452
13670
  description: "List or search HubSpot deals by optional query",
13453
13671
  scopes: ["oauth crm.objects.deals.read"],
13672
+ tags: [],
13454
13673
  parameters: {
13455
13674
  type: "object",
13456
13675
  required: [],
@@ -13514,6 +13733,7 @@ export const hubspotGetDealsDefinition = {
13514
13733
  export const hubspotGetDealDetailsDefinition = {
13515
13734
  description: "Get detailed information about a specific HubSpot deal",
13516
13735
  scopes: ["oauth crm.objects.deals.read"],
13736
+ tags: [],
13517
13737
  parameters: {
13518
13738
  type: "object",
13519
13739
  required: ["dealId"],
@@ -13598,6 +13818,7 @@ export const hubspotGetDealDetailsDefinition = {
13598
13818
  export const hubspotGetTicketsDefinition = {
13599
13819
  description: "List or search HubSpot tickets by optional query",
13600
13820
  scopes: ["oauth crm.objects.tickets.read"],
13821
+ tags: [],
13601
13822
  parameters: {
13602
13823
  type: "object",
13603
13824
  required: [],
@@ -13657,6 +13878,7 @@ export const hubspotGetTicketsDefinition = {
13657
13878
  export const hubspotGetTicketDetailsDefinition = {
13658
13879
  description: "Get detailed information about a specific HubSpot ticket",
13659
13880
  scopes: ["oauth crm.objects.tickets.read"],
13881
+ tags: [],
13660
13882
  parameters: {
13661
13883
  type: "object",
13662
13884
  required: ["ticketId"],