@credal/actions 0.2.186 → 0.2.187

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.
@@ -1,4 +1,5 @@
1
1
  export const genericFillTemplateDefinition = {
2
+ displayName: "Fill a template",
2
3
  description: "Simple utility that takes a template and returns it filled in",
3
4
  scopes: [],
4
5
  tags: [],
@@ -26,6 +27,7 @@ export const genericFillTemplateDefinition = {
26
27
  provider: "generic",
27
28
  };
28
29
  export const perplexityPerplexityDeepResearchDefinition = {
30
+ displayName: "Perplexity Deep Research",
29
31
  description: "Performs deep research using Perplexity AI",
30
32
  scopes: [],
31
33
  tags: [],
@@ -108,6 +110,7 @@ export const perplexityPerplexityDeepResearchDefinition = {
108
110
  provider: "perplexity",
109
111
  };
110
112
  export const asanaCommentTaskDefinition = {
113
+ displayName: "Comment on a task",
111
114
  description: "Comments on an Asana task with specified content",
112
115
  scopes: [],
113
116
  tags: [],
@@ -151,6 +154,7 @@ export const asanaCommentTaskDefinition = {
151
154
  provider: "asana",
152
155
  };
153
156
  export const asanaListAsanaTasksByProjectDefinition = {
157
+ displayName: "List Asana Tasks by project",
154
158
  description: "List all tasks associated with an Asana project and their data",
155
159
  scopes: [],
156
160
  tags: [],
@@ -319,6 +323,7 @@ export const asanaListAsanaTasksByProjectDefinition = {
319
323
  provider: "asana",
320
324
  };
321
325
  export const asanaCreateTaskDefinition = {
326
+ displayName: "Create task",
322
327
  description: "Create an Asana task with specified content using optional template",
323
328
  scopes: [],
324
329
  tags: [],
@@ -384,6 +389,7 @@ export const asanaCreateTaskDefinition = {
384
389
  provider: "asana",
385
390
  };
386
391
  export const asanaUpdateTaskDefinition = {
392
+ displayName: "Update task",
387
393
  description: "Updates a Asana task with specified content",
388
394
  scopes: [],
389
395
  tags: [],
@@ -448,6 +454,7 @@ export const asanaUpdateTaskDefinition = {
448
454
  provider: "asana",
449
455
  };
450
456
  export const asanaSearchTasksDefinition = {
457
+ displayName: "Search tasks",
451
458
  description: "List all tasks associated with search query",
452
459
  scopes: [],
453
460
  tags: [],
@@ -502,6 +509,7 @@ export const asanaSearchTasksDefinition = {
502
509
  provider: "asana",
503
510
  };
504
511
  export const asanaGetTasksDetailsDefinition = {
512
+ displayName: "Get details of tasks",
505
513
  description: "Retrieve detailed information (assignee, comments, description, title, etc.) for a list of task IDs",
506
514
  scopes: [],
507
515
  tags: [],
@@ -593,6 +601,7 @@ export const asanaGetTasksDetailsDefinition = {
593
601
  provider: "asana",
594
602
  };
595
603
  export const slackSendDmFromBotDefinition = {
604
+ displayName: "Send DM from bot",
596
605
  description: "Sends a direct message to a user on Slack using a bot",
597
606
  scopes: ["users:read", "channels:manage", "chat:write"],
598
607
  tags: [],
@@ -640,6 +649,7 @@ export const slackSendDmFromBotDefinition = {
640
649
  provider: "slack",
641
650
  };
642
651
  export const slackCreateChannelDefinition = {
652
+ displayName: "Create a channel",
643
653
  description: "Creates a new Slack channel using a bot token",
644
654
  scopes: ["channels:manage"],
645
655
  tags: [],
@@ -683,6 +693,7 @@ export const slackCreateChannelDefinition = {
683
693
  provider: "slack",
684
694
  };
685
695
  export const slackSendMessageDefinition = {
696
+ displayName: "Send a message",
686
697
  description: "Sends a message to a Slack channel",
687
698
  scopes: ["chat:write"],
688
699
  tags: [],
@@ -726,6 +737,7 @@ export const slackSendMessageDefinition = {
726
737
  provider: "slack",
727
738
  };
728
739
  export const slackGetChannelMessagesDefinition = {
740
+ displayName: "Get messages in a channel",
729
741
  description: "Gets messages from a Slack channel",
730
742
  scopes: ["channels:history"],
731
743
  tags: [],
@@ -804,6 +816,7 @@ export const slackGetChannelMessagesDefinition = {
804
816
  provider: "slack",
805
817
  };
806
818
  export const slackGetChannelMembersDefinition = {
819
+ displayName: "Get members of a channel",
807
820
  description: "Gets the members of a Slack channel",
808
821
  scopes: ["channels:read"],
809
822
  tags: [],
@@ -854,6 +867,7 @@ export const slackGetChannelMembersDefinition = {
854
867
  provider: "slack",
855
868
  };
856
869
  export const slackUserSearchSlackDefinition = {
870
+ displayName: "Search Slack",
857
871
  description: "Search Slack (DM/MPIM by emails or channel) with optional topic/time filter. Automatically hydrates each hit (full thread if threaded, otherwise a small surrounding context).",
858
872
  scopes: [
859
873
  "search:read",
@@ -1041,6 +1055,7 @@ export const slackUserSearchSlackDefinition = {
1041
1055
  provider: "slackUser",
1042
1056
  };
1043
1057
  export const slackUserSearchSlackRTSDefinition = {
1058
+ displayName: "Search Slack with Real-Time Search",
1044
1059
  description: "Search Slack messages across your organization using Slack's Real-Time Search API (assistant.search.context). Searches all conversations within the scope of permissions granted and returns relevant messages with content, author info, and permalinks.",
1045
1060
  scopes: [
1046
1061
  "search:read.public",
@@ -1182,6 +1197,7 @@ export const slackUserSearchSlackRTSDefinition = {
1182
1197
  provider: "slackUser",
1183
1198
  };
1184
1199
  export const mathAddDefinition = {
1200
+ displayName: "Add numbers",
1185
1201
  description: "Adds two numbers together",
1186
1202
  scopes: [],
1187
1203
  tags: [],
@@ -1213,6 +1229,7 @@ export const mathAddDefinition = {
1213
1229
  provider: "math",
1214
1230
  };
1215
1231
  export const confluenceOverwritePageDefinition = {
1232
+ displayName: "Overwrite a page",
1216
1233
  description: "Updates a Confluence page with the new content specified",
1217
1234
  scopes: [],
1218
1235
  tags: [],
@@ -1252,6 +1269,7 @@ export const confluenceOverwritePageDefinition = {
1252
1269
  provider: "confluence",
1253
1270
  };
1254
1271
  export const confluenceFetchPageContentDefinition = {
1272
+ displayName: "Fetch page content",
1255
1273
  description: "Fetches content from a Confluence page",
1256
1274
  scopes: [],
1257
1275
  tags: [],
@@ -1300,6 +1318,7 @@ export const confluenceFetchPageContentDefinition = {
1300
1318
  provider: "confluence",
1301
1319
  };
1302
1320
  export const jiraAssignJiraTicketDefinition = {
1321
+ displayName: "Assign a Jira ticket",
1303
1322
  description: "Assigns/Reassigns a Jira ticket to a specified user",
1304
1323
  scopes: ["write:jira-work", "read:jira-user"],
1305
1324
  tags: [],
@@ -1344,6 +1363,7 @@ export const jiraAssignJiraTicketDefinition = {
1344
1363
  provider: "jira",
1345
1364
  };
1346
1365
  export const jiraPublicCommentOnServiceDeskRequestDefinition = {
1366
+ displayName: "Publicly comment on a service desk request",
1347
1367
  description: "Comments publicly on a Jira service desk request with specified content",
1348
1368
  scopes: ["write:comment:jira"],
1349
1369
  tags: [],
@@ -1383,6 +1403,7 @@ export const jiraPublicCommentOnServiceDeskRequestDefinition = {
1383
1403
  provider: "jira",
1384
1404
  };
1385
1405
  export const jiraCommentJiraTicketDefinition = {
1406
+ displayName: "Comment on a Jira ticket",
1386
1407
  description: "Comments on a Jira ticket with specified content",
1387
1408
  scopes: ["write:comment:jira"],
1388
1409
  tags: [],
@@ -1427,6 +1448,7 @@ export const jiraCommentJiraTicketDefinition = {
1427
1448
  provider: "jira",
1428
1449
  };
1429
1450
  export const jiraCreateJiraTicketDefinition = {
1451
+ displayName: "Create a Jira ticket",
1430
1452
  description: "Create a jira ticket with new content specified",
1431
1453
  scopes: [],
1432
1454
  tags: [],
@@ -1492,6 +1514,7 @@ export const jiraCreateJiraTicketDefinition = {
1492
1514
  provider: "jira",
1493
1515
  };
1494
1516
  export const jiraCreateServiceDeskRequestDefinition = {
1517
+ displayName: "Create a service desk request",
1495
1518
  description: "Create a jira service desk request with specified content",
1496
1519
  scopes: [],
1497
1520
  tags: [],
@@ -1551,6 +1574,7 @@ export const jiraCreateServiceDeskRequestDefinition = {
1551
1574
  provider: "jira",
1552
1575
  };
1553
1576
  export const jiraGetJiraTicketDetailsDefinition = {
1577
+ displayName: "Get Jira ticket details",
1554
1578
  description: "Get details of a ticket in Jira",
1555
1579
  scopes: ["read:jira-work"],
1556
1580
  tags: [],
@@ -1609,6 +1633,7 @@ export const jiraGetJiraTicketDetailsDefinition = {
1609
1633
  provider: "jira",
1610
1634
  };
1611
1635
  export const jiraGetJiraTicketHistoryDefinition = {
1636
+ displayName: "Get Jira ticket history",
1612
1637
  description: "Get ticket history of a ticket in Jira",
1613
1638
  scopes: ["read:jira-work"],
1614
1639
  tags: [],
@@ -1649,6 +1674,7 @@ export const jiraGetJiraTicketHistoryDefinition = {
1649
1674
  provider: "jira",
1650
1675
  };
1651
1676
  export const jiraUpdateJiraTicketDetailsDefinition = {
1677
+ displayName: "Update Jira ticket details",
1652
1678
  description: "Update a Jira ticket with new content specified",
1653
1679
  scopes: ["write:jira-work"],
1654
1680
  tags: [],
@@ -1710,6 +1736,7 @@ export const jiraUpdateJiraTicketDetailsDefinition = {
1710
1736
  provider: "jira",
1711
1737
  };
1712
1738
  export const jiraUpdateJiraTicketStatusDefinition = {
1739
+ displayName: "Update Jira ticket status",
1713
1740
  description: "Updates the status of Jira ticket with specified status",
1714
1741
  scopes: ["read:jira-work", "write:jira-work"],
1715
1742
  tags: [],
@@ -1754,6 +1781,7 @@ export const jiraUpdateJiraTicketStatusDefinition = {
1754
1781
  provider: "jira",
1755
1782
  };
1756
1783
  export const jiraGetJiraIssuesByQueryDefinition = {
1784
+ displayName: "Get Jira issues with a query",
1757
1785
  description: "Retrieve Jira Issues by JQL query",
1758
1786
  scopes: [],
1759
1787
  tags: [],
@@ -1953,6 +1981,7 @@ export const jiraGetJiraIssuesByQueryDefinition = {
1953
1981
  provider: "jira",
1954
1982
  };
1955
1983
  export const jiraOrgAssignJiraTicketDefinition = {
1984
+ displayName: "Assign a Jira ticket",
1956
1985
  description: "Assigns/Reassigns a Jira ticket to a specified user",
1957
1986
  scopes: ["write:jira-work", "read:jira-user"],
1958
1987
  tags: [],
@@ -1997,6 +2026,7 @@ export const jiraOrgAssignJiraTicketDefinition = {
1997
2026
  provider: "jiraOrg",
1998
2027
  };
1999
2028
  export const jiraOrgPublicCommentOnServiceDeskRequestDefinition = {
2029
+ displayName: "Publicly comment on a service desk request",
2000
2030
  description: "Comments publicly on a Jira service desk request with specified content",
2001
2031
  scopes: ["write:comment:jira"],
2002
2032
  tags: [],
@@ -2036,6 +2066,7 @@ export const jiraOrgPublicCommentOnServiceDeskRequestDefinition = {
2036
2066
  provider: "jiraOrg",
2037
2067
  };
2038
2068
  export const jiraOrgCommentJiraTicketDefinition = {
2069
+ displayName: "Comment on a Jira ticket",
2039
2070
  description: "Comments on a Jira ticket with specified content",
2040
2071
  scopes: ["write:comment:jira"],
2041
2072
  tags: [],
@@ -2080,6 +2111,7 @@ export const jiraOrgCommentJiraTicketDefinition = {
2080
2111
  provider: "jiraOrg",
2081
2112
  };
2082
2113
  export const jiraOrgCreateJiraTicketDefinition = {
2114
+ displayName: "Create a Jira ticket",
2083
2115
  description: "Create a jira ticket with new content specified",
2084
2116
  scopes: [],
2085
2117
  tags: [],
@@ -2145,6 +2177,7 @@ export const jiraOrgCreateJiraTicketDefinition = {
2145
2177
  provider: "jiraOrg",
2146
2178
  };
2147
2179
  export const jiraOrgCreateServiceDeskRequestDefinition = {
2180
+ displayName: "Create a service desk request",
2148
2181
  description: "Create a jira service desk request with specified content",
2149
2182
  scopes: [],
2150
2183
  tags: [],
@@ -2204,6 +2237,7 @@ export const jiraOrgCreateServiceDeskRequestDefinition = {
2204
2237
  provider: "jiraOrg",
2205
2238
  };
2206
2239
  export const jiraOrgGetJiraTicketDetailsDefinition = {
2240
+ displayName: "Get Jira ticket details",
2207
2241
  description: "Get details of a ticket in Jira",
2208
2242
  scopes: ["read:jira-work"],
2209
2243
  tags: [],
@@ -2262,6 +2296,7 @@ export const jiraOrgGetJiraTicketDetailsDefinition = {
2262
2296
  provider: "jiraOrg",
2263
2297
  };
2264
2298
  export const jiraOrgGetJiraTicketHistoryDefinition = {
2299
+ displayName: "Get Jira ticket history",
2265
2300
  description: "Get ticket history of a ticket in Jira",
2266
2301
  scopes: ["read:jira-work"],
2267
2302
  tags: [],
@@ -2302,6 +2337,7 @@ export const jiraOrgGetJiraTicketHistoryDefinition = {
2302
2337
  provider: "jiraOrg",
2303
2338
  };
2304
2339
  export const jiraOrgUpdateJiraTicketDetailsDefinition = {
2340
+ displayName: "Update Jira ticket details",
2305
2341
  description: "Update a Jira ticket with new content specified",
2306
2342
  scopes: ["write:jira-work"],
2307
2343
  tags: [],
@@ -2363,6 +2399,7 @@ export const jiraOrgUpdateJiraTicketDetailsDefinition = {
2363
2399
  provider: "jiraOrg",
2364
2400
  };
2365
2401
  export const jiraOrgUpdateJiraTicketStatusDefinition = {
2402
+ displayName: "Update Jira ticket status",
2366
2403
  description: "Updates the status of Jira ticket with specified status",
2367
2404
  scopes: ["read:jira-work", "write:jira-work"],
2368
2405
  tags: [],
@@ -2407,6 +2444,7 @@ export const jiraOrgUpdateJiraTicketStatusDefinition = {
2407
2444
  provider: "jiraOrg",
2408
2445
  };
2409
2446
  export const jiraOrgGetJiraIssuesByQueryDefinition = {
2447
+ displayName: "Get Jira issues with a query",
2410
2448
  description: "Retrieve Jira Issues by JQL query",
2411
2449
  scopes: [],
2412
2450
  tags: [],
@@ -2606,6 +2644,7 @@ export const jiraOrgGetJiraIssuesByQueryDefinition = {
2606
2644
  provider: "jiraOrg",
2607
2645
  };
2608
2646
  export const jiraDataCenterAssignJiraTicketDefinition = {
2647
+ displayName: "Assign a Jira ticket",
2609
2648
  description: "Assigns/Reassigns a Jira ticket to a specified user",
2610
2649
  scopes: ["write:jira-work", "read:jira-user"],
2611
2650
  tags: [],
@@ -2650,6 +2689,7 @@ export const jiraDataCenterAssignJiraTicketDefinition = {
2650
2689
  provider: "jiraDataCenter",
2651
2690
  };
2652
2691
  export const jiraDataCenterPublicCommentOnServiceDeskRequestDefinition = {
2692
+ displayName: "Publicly comment on a service desk request",
2653
2693
  description: "Comments publicly on a Jira service desk request with specified content",
2654
2694
  scopes: ["write:comment:jira"],
2655
2695
  tags: [],
@@ -2689,6 +2729,7 @@ export const jiraDataCenterPublicCommentOnServiceDeskRequestDefinition = {
2689
2729
  provider: "jiraDataCenter",
2690
2730
  };
2691
2731
  export const jiraDataCenterCommentJiraTicketDefinition = {
2732
+ displayName: "Comment on a Jira ticket",
2692
2733
  description: "Comments on a Jira ticket with specified content",
2693
2734
  scopes: ["write:comment:jira"],
2694
2735
  tags: [],
@@ -2733,6 +2774,7 @@ export const jiraDataCenterCommentJiraTicketDefinition = {
2733
2774
  provider: "jiraDataCenter",
2734
2775
  };
2735
2776
  export const jiraDataCenterCreateJiraTicketDefinition = {
2777
+ displayName: "Create a Jira ticket",
2736
2778
  description: "Create a jira ticket with new content specified",
2737
2779
  scopes: [],
2738
2780
  tags: [],
@@ -2798,6 +2840,7 @@ export const jiraDataCenterCreateJiraTicketDefinition = {
2798
2840
  provider: "jiraDataCenter",
2799
2841
  };
2800
2842
  export const jiraDataCenterCreateServiceDeskRequestDefinition = {
2843
+ displayName: "Create a service desk request",
2801
2844
  description: "Create a jira service desk request with specified content",
2802
2845
  scopes: [],
2803
2846
  tags: [],
@@ -2857,6 +2900,7 @@ export const jiraDataCenterCreateServiceDeskRequestDefinition = {
2857
2900
  provider: "jiraDataCenter",
2858
2901
  };
2859
2902
  export const jiraDataCenterGetJiraTicketDetailsDefinition = {
2903
+ displayName: "Get Jira ticket details",
2860
2904
  description: "Get details of a ticket in Jira",
2861
2905
  scopes: ["read:jira-work"],
2862
2906
  tags: [],
@@ -2915,6 +2959,7 @@ export const jiraDataCenterGetJiraTicketDetailsDefinition = {
2915
2959
  provider: "jiraDataCenter",
2916
2960
  };
2917
2961
  export const jiraDataCenterGetJiraTicketHistoryDefinition = {
2962
+ displayName: "Get Jira ticket history",
2918
2963
  description: "Get ticket history of a ticket in Jira",
2919
2964
  scopes: ["read:jira-work"],
2920
2965
  tags: [],
@@ -2955,6 +3000,7 @@ export const jiraDataCenterGetJiraTicketHistoryDefinition = {
2955
3000
  provider: "jiraDataCenter",
2956
3001
  };
2957
3002
  export const jiraDataCenterUpdateJiraTicketDetailsDefinition = {
3003
+ displayName: "Update Jira ticket details",
2958
3004
  description: "Update a Jira ticket with new content specified",
2959
3005
  scopes: ["write:jira-work"],
2960
3006
  tags: [],
@@ -3016,6 +3062,7 @@ export const jiraDataCenterUpdateJiraTicketDetailsDefinition = {
3016
3062
  provider: "jiraDataCenter",
3017
3063
  };
3018
3064
  export const jiraDataCenterUpdateJiraTicketStatusDefinition = {
3065
+ displayName: "Update Jira ticket status",
3019
3066
  description: "Updates the status of Jira ticket with specified status",
3020
3067
  scopes: ["read:jira-work", "write:jira-work"],
3021
3068
  tags: [],
@@ -3060,6 +3107,7 @@ export const jiraDataCenterUpdateJiraTicketStatusDefinition = {
3060
3107
  provider: "jiraDataCenter",
3061
3108
  };
3062
3109
  export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
3110
+ displayName: "Get Jira issues with a query",
3063
3111
  description: "Retrieve Jira Issues by JQL query",
3064
3112
  scopes: [],
3065
3113
  tags: [],
@@ -3259,6 +3307,7 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
3259
3307
  provider: "jiraDataCenter",
3260
3308
  };
3261
3309
  export const googlemapsValidateAddressDefinition = {
3310
+ displayName: "Validate an address",
3262
3311
  description: "Validate an address using the Google Maps API",
3263
3312
  scopes: [],
3264
3313
  tags: [],
@@ -3427,6 +3476,7 @@ export const googlemapsValidateAddressDefinition = {
3427
3476
  provider: "googlemaps",
3428
3477
  };
3429
3478
  export const googlemapsNearbysearchRestaurantsDefinition = {
3479
+ displayName: "Search for nearby places",
3430
3480
  description: "Search for nearby places using Google Maps",
3431
3481
  scopes: [],
3432
3482
  tags: [],
@@ -3495,7 +3545,8 @@ export const googlemapsNearbysearchRestaurantsDefinition = {
3495
3545
  provider: "googlemaps",
3496
3546
  };
3497
3547
  export const bingGetTopNSearchResultUrlsDefinition = {
3498
- description: "Get the top five search result URLs from Bing",
3548
+ displayName: "Get top search result URLs",
3549
+ description: "Get the top search result URLs from Bing",
3499
3550
  scopes: [],
3500
3551
  tags: [],
3501
3552
  parameters: {
@@ -3543,6 +3594,7 @@ export const bingGetTopNSearchResultUrlsDefinition = {
3543
3594
  provider: "bing",
3544
3595
  };
3545
3596
  export const zendeskCreateZendeskTicketDefinition = {
3597
+ displayName: "Create a Zendesk ticket",
3546
3598
  description: "Create a ticket in Zendesk",
3547
3599
  scopes: [],
3548
3600
  tags: [],
@@ -3587,6 +3639,7 @@ export const zendeskCreateZendeskTicketDefinition = {
3587
3639
  provider: "zendesk",
3588
3640
  };
3589
3641
  export const zendeskListZendeskTicketsDefinition = {
3642
+ displayName: "List Zendesk tickets",
3590
3643
  description: "List tickets in Zendesk from the past 3 months",
3591
3644
  scopes: [],
3592
3645
  tags: [],
@@ -3626,6 +3679,7 @@ export const zendeskListZendeskTicketsDefinition = {
3626
3679
  provider: "zendesk",
3627
3680
  };
3628
3681
  export const zendeskGetTicketDetailsDefinition = {
3682
+ displayName: "Get ticket details",
3629
3683
  description: "Get details of a ticket in Zendesk",
3630
3684
  scopes: [],
3631
3685
  tags: [],
@@ -3658,6 +3712,7 @@ export const zendeskGetTicketDetailsDefinition = {
3658
3712
  provider: "zendesk",
3659
3713
  };
3660
3714
  export const zendeskUpdateTicketStatusDefinition = {
3715
+ displayName: "Update ticket status",
3661
3716
  description: "Update the status of a ticket in Zendesk",
3662
3717
  scopes: [],
3663
3718
  tags: [],
@@ -3684,6 +3739,7 @@ export const zendeskUpdateTicketStatusDefinition = {
3684
3739
  provider: "zendesk",
3685
3740
  };
3686
3741
  export const zendeskAddCommentToTicketDefinition = {
3742
+ displayName: "Add comment to ticket",
3687
3743
  description: "Add a comment to a ticket in Zendesk",
3688
3744
  scopes: [],
3689
3745
  tags: [],
@@ -3728,6 +3784,7 @@ export const zendeskAddCommentToTicketDefinition = {
3728
3784
  provider: "zendesk",
3729
3785
  };
3730
3786
  export const zendeskAssignTicketDefinition = {
3787
+ displayName: "Assign a ticket",
3731
3788
  description: "Assign a ticket in Zendesk to a specific user",
3732
3789
  scopes: [],
3733
3790
  tags: [],
@@ -3754,6 +3811,7 @@ export const zendeskAssignTicketDefinition = {
3754
3811
  provider: "zendesk",
3755
3812
  };
3756
3813
  export const zendeskSearchZendeskByQueryDefinition = {
3814
+ displayName: "Search Zendesk with a query",
3757
3815
  description: "Search Zendesk objects by query with flexible filtering options",
3758
3816
  scopes: [],
3759
3817
  tags: [],
@@ -3802,7 +3860,8 @@ export const zendeskSearchZendeskByQueryDefinition = {
3802
3860
  provider: "zendesk",
3803
3861
  };
3804
3862
  export const linkedinCreateShareLinkedinPostUrlDefinition = {
3805
- description: "Create a share linkedin post link",
3863
+ displayName: "Create a share LinkedIn post URL",
3864
+ description: "Create a share LinkedIn post link",
3806
3865
  scopes: [],
3807
3866
  tags: [],
3808
3867
  parameters: {
@@ -3833,6 +3892,7 @@ export const linkedinCreateShareLinkedinPostUrlDefinition = {
3833
3892
  provider: "linkedin",
3834
3893
  };
3835
3894
  export const xCreateShareXPostUrlDefinition = {
3895
+ displayName: "Create a share X post URL",
3836
3896
  description: "Create a share X (formerly twitter) post link",
3837
3897
  scopes: [],
3838
3898
  tags: [],
@@ -3879,6 +3939,7 @@ export const xCreateShareXPostUrlDefinition = {
3879
3939
  provider: "x",
3880
3940
  };
3881
3941
  export const mongoInsertMongoDocDefinition = {
3942
+ displayName: "Insert a Mongo document",
3882
3943
  description: "Insert a document into a MongoDB collection",
3883
3944
  scopes: [],
3884
3945
  tags: [],
@@ -3914,6 +3975,7 @@ export const mongoInsertMongoDocDefinition = {
3914
3975
  provider: "mongo",
3915
3976
  };
3916
3977
  export const snowflakeGetRowByFieldValueDefinition = {
3978
+ displayName: "Get a row by field value",
3917
3979
  description: "Get a row from a Snowflake table by a field value",
3918
3980
  scopes: [],
3919
3981
  tags: [],
@@ -3971,6 +4033,7 @@ export const snowflakeGetRowByFieldValueDefinition = {
3971
4033
  provider: "snowflake",
3972
4034
  };
3973
4035
  export const snowflakeRunSnowflakeQueryDefinition = {
4036
+ displayName: "Run a Snowflake query",
3974
4037
  description: "Execute a Snowflake query and return output.",
3975
4038
  scopes: [],
3976
4039
  tags: [],
@@ -4048,6 +4111,7 @@ export const snowflakeRunSnowflakeQueryDefinition = {
4048
4111
  provider: "snowflake",
4049
4112
  };
4050
4113
  export const openstreetmapGetLatitudeLongitudeFromLocationDefinition = {
4114
+ displayName: "Get latitude and longitude from location",
4051
4115
  description: "Get the latitude and longitude of a location",
4052
4116
  scopes: [],
4053
4117
  tags: [],
@@ -4093,6 +4157,7 @@ export const openstreetmapGetLatitudeLongitudeFromLocationDefinition = {
4093
4157
  provider: "openstreetmap",
4094
4158
  };
4095
4159
  export const nwsGetForecastForLocationDefinition = {
4160
+ displayName: "Get forecast for location",
4096
4161
  description: "Get the weather forecast for a location using latitude and longitude",
4097
4162
  scopes: [],
4098
4163
  tags: [],
@@ -4142,6 +4207,7 @@ export const nwsGetForecastForLocationDefinition = {
4142
4207
  provider: "nws",
4143
4208
  };
4144
4209
  export const firecrawlDeepResearchDefinition = {
4210
+ displayName: "Deep Research",
4145
4211
  description: "Deep research on a topic using Firecrawl",
4146
4212
  scopes: [],
4147
4213
  tags: [],
@@ -4203,6 +4269,7 @@ export const firecrawlDeepResearchDefinition = {
4203
4269
  provider: "firecrawl",
4204
4270
  };
4205
4271
  export const firecrawlScrapeUrlDefinition = {
4272
+ displayName: "Scrape URL",
4206
4273
  description: "Scrape a URL and get website content using Firecrawl",
4207
4274
  scopes: [],
4208
4275
  tags: [],
@@ -4273,6 +4340,7 @@ export const firecrawlScrapeUrlDefinition = {
4273
4340
  provider: "firecrawl",
4274
4341
  };
4275
4342
  export const firecrawlSearchAndScrapeDefinition = {
4343
+ displayName: "Search and scrape",
4276
4344
  description: "Search and scrape the web using Firecrawl",
4277
4345
  scopes: [],
4278
4346
  tags: [],
@@ -4326,6 +4394,7 @@ export const firecrawlSearchAndScrapeDefinition = {
4326
4394
  provider: "firecrawl",
4327
4395
  };
4328
4396
  export const firecrawlGetTopNSearchResultUrlsDefinition = {
4397
+ displayName: "Get top search result URLs",
4329
4398
  description: "Get the top five search result URLs from Firecrawl",
4330
4399
  scopes: [],
4331
4400
  tags: [],
@@ -4374,7 +4443,8 @@ export const firecrawlGetTopNSearchResultUrlsDefinition = {
4374
4443
  provider: "firecrawl",
4375
4444
  };
4376
4445
  export const firecrawlScrapeTweetDataWithNitterDefinition = {
4377
- description: "Given A tweet URL scrape the tweet data with nitter+firecrawl",
4446
+ displayName: "Scrape tweet data with nitter",
4447
+ description: "Given a tweet URL, scrape the tweet data with nitter+firecrawl",
4378
4448
  scopes: [],
4379
4449
  tags: [],
4380
4450
  parameters: {
@@ -4401,6 +4471,7 @@ export const firecrawlScrapeTweetDataWithNitterDefinition = {
4401
4471
  provider: "firecrawl",
4402
4472
  };
4403
4473
  export const resendSendEmailDefinition = {
4474
+ displayName: "Send an email",
4404
4475
  description: "Send an email using Resend",
4405
4476
  scopes: [],
4406
4477
  tags: [],
@@ -4440,6 +4511,7 @@ export const resendSendEmailDefinition = {
4440
4511
  provider: "resend",
4441
4512
  };
4442
4513
  export const resendSendEmailHtmlDefinition = {
4514
+ displayName: "Send an HTML email",
4443
4515
  description: "Send an HTML email using Resend",
4444
4516
  scopes: [],
4445
4517
  tags: [],
@@ -4479,6 +4551,7 @@ export const resendSendEmailHtmlDefinition = {
4479
4551
  provider: "resend",
4480
4552
  };
4481
4553
  export const googleOauthCreateNewGoogleDocDefinition = {
4554
+ displayName: "Create a new Google Doc",
4482
4555
  description: "Create a new Google Docs document using OAuth authentication",
4483
4556
  scopes: [],
4484
4557
  tags: [],
@@ -4518,6 +4591,7 @@ export const googleOauthCreateNewGoogleDocDefinition = {
4518
4591
  provider: "googleOauth",
4519
4592
  };
4520
4593
  export const googleOauthUpdateDocDefinition = {
4594
+ displayName: "Update a Google Doc",
4521
4595
  description: "Update an existing Google Docs document using OAuth authentication with batch requests",
4522
4596
  scopes: [],
4523
4597
  tags: [],
@@ -5630,7 +5704,8 @@ export const googleOauthUpdateDocDefinition = {
5630
5704
  provider: "googleOauth",
5631
5705
  };
5632
5706
  export const googleOauthScheduleCalendarMeetingDefinition = {
5633
- description: "Schedule a meeting on google calendar using OAuth authentication",
5707
+ displayName: "Schedule a Calendar meeting",
5708
+ description: "Schedule a meeting on Google Calendar using OAuth authentication",
5634
5709
  scopes: [],
5635
5710
  tags: [],
5636
5711
  parameters: {
@@ -5748,6 +5823,7 @@ export const googleOauthScheduleCalendarMeetingDefinition = {
5748
5823
  provider: "googleOauth",
5749
5824
  };
5750
5825
  export const googleOauthListCalendarsDefinition = {
5826
+ displayName: "List calendars",
5751
5827
  description: "List all Google Calendars for the authenticated user",
5752
5828
  scopes: ["https://www.googleapis.com/auth/calendar.readonly"],
5753
5829
  tags: [],
@@ -5797,6 +5873,7 @@ export const googleOauthListCalendarsDefinition = {
5797
5873
  provider: "googleOauth",
5798
5874
  };
5799
5875
  export const googleOauthListCalendarEventsDefinition = {
5876
+ displayName: "List Calendar events",
5800
5877
  description: "List events on a Google Calendar, optionally searching by query.",
5801
5878
  scopes: ["https://www.googleapis.com/auth/calendar.readonly"],
5802
5879
  tags: [],
@@ -5979,6 +6056,7 @@ export const googleOauthListCalendarEventsDefinition = {
5979
6056
  provider: "googleOauth",
5980
6057
  };
5981
6058
  export const googleOauthUpdateCalendarEventDefinition = {
6059
+ displayName: "Update a Calendar event",
5982
6060
  description: "Update an event on a Google Calendar using OAuth authentication",
5983
6061
  scopes: ["https://www.googleapis.com/auth/calendar"],
5984
6062
  tags: [],
@@ -6079,6 +6157,7 @@ export const googleOauthUpdateCalendarEventDefinition = {
6079
6157
  provider: "googleOauth",
6080
6158
  };
6081
6159
  export const googleOauthEditAGoogleCalendarEventDefinition = {
6160
+ displayName: "Edit a Google Calendar event",
6082
6161
  description: "Edit an existing Google Calendar event using OAuth authentication",
6083
6162
  scopes: ["https://www.googleapis.com/auth/calendar"],
6084
6163
  tags: [],
@@ -6177,6 +6256,7 @@ export const googleOauthEditAGoogleCalendarEventDefinition = {
6177
6256
  provider: "googleOauth",
6178
6257
  };
6179
6258
  export const googleOauthDeleteCalendarEventDefinition = {
6259
+ displayName: "Delete a Calendar event",
6180
6260
  description: "Delete an event from a Google Calendar using OAuth authentication",
6181
6261
  scopes: ["https://www.googleapis.com/auth/calendar"],
6182
6262
  tags: [],
@@ -6213,6 +6293,7 @@ export const googleOauthDeleteCalendarEventDefinition = {
6213
6293
  provider: "googleOauth",
6214
6294
  };
6215
6295
  export const googleOauthCreateSpreadsheetDefinition = {
6296
+ displayName: "Create a spreadsheet",
6216
6297
  description: "Create a new Google Spreadsheet using OAuth authentication",
6217
6298
  scopes: [],
6218
6299
  tags: [],
@@ -6326,6 +6407,7 @@ export const googleOauthCreateSpreadsheetDefinition = {
6326
6407
  provider: "googleOauth",
6327
6408
  };
6328
6409
  export const googleOauthUpdateSpreadsheetDefinition = {
6410
+ displayName: "Update a spreadsheet",
6329
6411
  description: "Update a Google Spreadsheet with new content specified",
6330
6412
  scopes: [],
6331
6413
  tags: [],
@@ -6715,6 +6797,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
6715
6797
  provider: "googleOauth",
6716
6798
  };
6717
6799
  export const googleOauthAppendRowsToSpreadsheetDefinition = {
6800
+ displayName: "Append rows to a spreadsheet",
6718
6801
  description: "Adds new cells after the last row with data in a sheet, inserting new rows into the sheet if necessary.",
6719
6802
  scopes: [],
6720
6803
  tags: [],
@@ -6773,6 +6856,7 @@ export const googleOauthAppendRowsToSpreadsheetDefinition = {
6773
6856
  provider: "googleOauth",
6774
6857
  };
6775
6858
  export const googleOauthDeleteRowFromSpreadsheetDefinition = {
6859
+ displayName: "Delete a row from a spreadsheet",
6776
6860
  description: "Deletes a specific row from a Google Spreadsheet by row index. Row indices are 0-based (first row is 0).",
6777
6861
  scopes: [],
6778
6862
  tags: [],
@@ -6824,6 +6908,7 @@ export const googleOauthDeleteRowFromSpreadsheetDefinition = {
6824
6908
  provider: "googleOauth",
6825
6909
  };
6826
6910
  export const googleOauthUpdateRowsInSpreadsheetDefinition = {
6911
+ displayName: "Update rows in a spreadsheet",
6827
6912
  description: "Updates one or more rows in a Google Spreadsheet starting from a specific row number. This overwrites existing data in the specified rows.",
6828
6913
  scopes: [],
6829
6914
  tags: [],
@@ -6902,6 +6987,7 @@ export const googleOauthUpdateRowsInSpreadsheetDefinition = {
6902
6987
  provider: "googleOauth",
6903
6988
  };
6904
6989
  export const googleOauthCreatePresentationDefinition = {
6990
+ displayName: "Create a presentation",
6905
6991
  description: "Create a Google Presentation",
6906
6992
  scopes: [],
6907
6993
  tags: [],
@@ -6976,6 +7062,7 @@ export const googleOauthCreatePresentationDefinition = {
6976
7062
  provider: "googleOauth",
6977
7063
  };
6978
7064
  export const googleOauthUpdatePresentationDefinition = {
7065
+ displayName: "Update a presentation",
6979
7066
  description: "Update a Google Presentation",
6980
7067
  scopes: [],
6981
7068
  tags: [],
@@ -8266,6 +8353,7 @@ export const googleOauthUpdatePresentationDefinition = {
8266
8353
  provider: "googleOauth",
8267
8354
  };
8268
8355
  export const googleOauthGetPresentationDefinition = {
8356
+ displayName: "Get a presentation",
8269
8357
  description: "Get a presentation by ID",
8270
8358
  scopes: ["slides.readonly"],
8271
8359
  tags: [],
@@ -8323,6 +8411,7 @@ export const googleOauthGetPresentationDefinition = {
8323
8411
  provider: "googleOauth",
8324
8412
  };
8325
8413
  export const googleOauthSearchDriveByKeywordsDefinition = {
8414
+ displayName: "Search Drive by keyword (legacy)",
8326
8415
  description: "Search Google Drive files that contain one or more keywords in their full text.",
8327
8416
  scopes: ["drive.readonly"],
8328
8417
  tags: [],
@@ -8391,6 +8480,7 @@ export const googleOauthSearchDriveByKeywordsDefinition = {
8391
8480
  provider: "googleOauth",
8392
8481
  };
8393
8482
  export const googleOauthSearchDriveByQueryDefinition = {
8483
+ displayName: "Search Drive with a query (legacy)",
8394
8484
  description: "Search Google Drive files based on a google drive query provided.",
8395
8485
  scopes: ["drive.readonly"],
8396
8486
  tags: [],
@@ -8464,6 +8554,7 @@ export const googleOauthSearchDriveByQueryDefinition = {
8464
8554
  provider: "googleOauth",
8465
8555
  };
8466
8556
  export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
8557
+ displayName: "Search Drive by keyword",
8467
8558
  description: "Search Google Drive with keywords and get resulting content",
8468
8559
  scopes: ["drive.readonly"],
8469
8560
  tags: [],
@@ -8562,6 +8653,7 @@ export const googleOauthSearchDriveByKeywordsAndGetFileContentDefinition = {
8562
8653
  provider: "googleOauth",
8563
8654
  };
8564
8655
  export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
8656
+ displayName: "Search Drive with a query and get file contents (legacy)",
8565
8657
  description: "Search Google Drive with Google Drive query syntax and get resulting content",
8566
8658
  scopes: ["drive.readonly"],
8567
8659
  tags: [],
@@ -8645,6 +8737,7 @@ export const googleOauthSearchDriveByQueryAndGetFileContentDefinition = {
8645
8737
  provider: "googleOauth",
8646
8738
  };
8647
8739
  export const googleOauthGetDriveFileContentByIdDefinition = {
8740
+ displayName: "Fetch file contents",
8648
8741
  description: "Get text content of a Google Drive file by its ID.",
8649
8742
  scopes: ["drive.readonly"],
8650
8743
  tags: [],
@@ -8724,6 +8817,7 @@ export const googleOauthGetDriveFileContentByIdDefinition = {
8724
8817
  provider: "googleOauth",
8725
8818
  };
8726
8819
  export const googleOauthListGroupsDefinition = {
8820
+ displayName: "List Groups",
8727
8821
  description: "List all Google Groups for the customer.",
8728
8822
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.readonly"],
8729
8823
  tags: [],
@@ -8781,6 +8875,7 @@ export const googleOauthListGroupsDefinition = {
8781
8875
  provider: "googleOauth",
8782
8876
  };
8783
8877
  export const googleOauthGetGroupDefinition = {
8878
+ displayName: "Get a Group",
8784
8879
  description: "Get details for a specific Google Group by group email or ID.",
8785
8880
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.readonly"],
8786
8881
  tags: [],
@@ -8834,6 +8929,7 @@ export const googleOauthGetGroupDefinition = {
8834
8929
  provider: "googleOauth",
8835
8930
  };
8836
8931
  export const googleOauthListGroupMembersDefinition = {
8932
+ displayName: "List Group members",
8837
8933
  description: "List all members of a Google Group.",
8838
8934
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.member.readonly"],
8839
8935
  tags: [],
@@ -8895,6 +8991,7 @@ export const googleOauthListGroupMembersDefinition = {
8895
8991
  provider: "googleOauth",
8896
8992
  };
8897
8993
  export const googleOauthHasGroupMemberDefinition = {
8994
+ displayName: "Check if a user is a Group member",
8898
8995
  description: "Check if a user is a member of a Google Group.",
8899
8996
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.member.readonly"],
8900
8997
  tags: [],
@@ -8934,6 +9031,7 @@ export const googleOauthHasGroupMemberDefinition = {
8934
9031
  provider: "googleOauth",
8935
9032
  };
8936
9033
  export const googleOauthAddGroupMemberDefinition = {
9034
+ displayName: "Add a Group member",
8937
9035
  description: "Add a member to a Google Group.",
8938
9036
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.member"],
8939
9037
  tags: [],
@@ -8973,6 +9071,7 @@ export const googleOauthAddGroupMemberDefinition = {
8973
9071
  provider: "googleOauth",
8974
9072
  };
8975
9073
  export const googleOauthDeleteGroupMemberDefinition = {
9074
+ displayName: "Delete a Group member",
8976
9075
  description: "Remove a member from a Google Group.",
8977
9076
  scopes: ["https://www.googleapis.com/auth/admin.directory.group.member"],
8978
9077
  tags: [],
@@ -9008,6 +9107,7 @@ export const googleOauthDeleteGroupMemberDefinition = {
9008
9107
  provider: "googleOauth",
9009
9108
  };
9010
9109
  export const googleOauthQueryGoogleBigQueryDefinition = {
9110
+ displayName: "Query Google BigQuery",
9011
9111
  description: "Execute read only SQL queries on Google BigQuery datasets",
9012
9112
  scopes: ["https://www.googleapis.com/auth/bigquery.readonly"],
9013
9113
  tags: [],
@@ -9088,6 +9188,7 @@ export const googleOauthQueryGoogleBigQueryDefinition = {
9088
9188
  provider: "googleOauth",
9089
9189
  };
9090
9190
  export const googlemailSearchGmailMessagesDefinition = {
9191
+ displayName: "Search Gmail messages",
9091
9192
  description: "Search Gmail messages in a user's inbox using a query string.",
9092
9193
  scopes: ["https://www.googleapis.com/auth/gmail.readonly"],
9093
9194
  tags: [],
@@ -9205,6 +9306,7 @@ export const googlemailSearchGmailMessagesDefinition = {
9205
9306
  provider: "googlemail",
9206
9307
  };
9207
9308
  export const googlemailListGmailThreadsDefinition = {
9309
+ displayName: "List Gmail threads",
9208
9310
  description: "List Gmail threads in a user's inbox using a query string.",
9209
9311
  scopes: ["https://www.googleapis.com/auth/gmail.readonly"],
9210
9312
  tags: [],
@@ -9288,6 +9390,7 @@ export const googlemailListGmailThreadsDefinition = {
9288
9390
  provider: "googlemail",
9289
9391
  };
9290
9392
  export const googlemailSendGmailDefinition = {
9393
+ displayName: "Send email with Gmail",
9291
9394
  description: "Send an email through Gmail with support for to, cc, bcc, subject, and content.",
9292
9395
  scopes: ["https://www.googleapis.com/auth/gmail.send"],
9293
9396
  tags: [],
@@ -9352,6 +9455,7 @@ export const googlemailSendGmailDefinition = {
9352
9455
  provider: "googlemail",
9353
9456
  };
9354
9457
  export const googleSearchCustomSearchDefinition = {
9458
+ displayName: "Custom Search",
9355
9459
  description: "Search for information using the Google Custom Search API",
9356
9460
  scopes: [],
9357
9461
  tags: [],
@@ -9459,6 +9563,7 @@ export const googleSearchCustomSearchDefinition = {
9459
9563
  provider: "googleSearch",
9460
9564
  };
9461
9565
  export const oktaOrgGetOktaUserByNameDefinition = {
9566
+ displayName: "Get Okta User by name",
9462
9567
  description: "Retrieve details of a specific Okta user by their name.",
9463
9568
  scopes: ["okta.users.read"],
9464
9569
  tags: [],
@@ -9516,6 +9621,7 @@ export const oktaOrgGetOktaUserByNameDefinition = {
9516
9621
  provider: "oktaOrg",
9517
9622
  };
9518
9623
  export const finnhubSymbolLookupDefinition = {
9624
+ displayName: "Look up a stock symbol",
9519
9625
  description: "Look up a stock symbol by name",
9520
9626
  scopes: [],
9521
9627
  tags: [],
@@ -9557,6 +9663,7 @@ export const finnhubSymbolLookupDefinition = {
9557
9663
  provider: "finnhub",
9558
9664
  };
9559
9665
  export const finnhubGetBasicFinancialsDefinition = {
9666
+ displayName: "Get basic financials",
9560
9667
  description: "Get company basic financials such as margin, P/E ratio, 52-week high/low etc.",
9561
9668
  scopes: [],
9562
9669
  tags: [],
@@ -9650,6 +9757,7 @@ export const finnhubGetBasicFinancialsDefinition = {
9650
9757
  provider: "finnhub",
9651
9758
  };
9652
9759
  export const lookerEnableUserByEmailDefinition = {
9760
+ displayName: "Enable user by email",
9653
9761
  description: "Search for a Looker user by email and enable them if disabled",
9654
9762
  scopes: [],
9655
9763
  tags: [],
@@ -9712,6 +9820,7 @@ export const lookerEnableUserByEmailDefinition = {
9712
9820
  provider: "looker",
9713
9821
  };
9714
9822
  export const salesforceUpdateRecordDefinition = {
9823
+ displayName: "Update a record",
9715
9824
  description: "Update a record in Salesforce",
9716
9825
  scopes: [],
9717
9826
  tags: [],
@@ -9754,6 +9863,7 @@ export const salesforceUpdateRecordDefinition = {
9754
9863
  provider: "salesforce",
9755
9864
  };
9756
9865
  export const salesforceCreateRecordDefinition = {
9866
+ displayName: "Create a record",
9757
9867
  description: "Create a record in Salesforce",
9758
9868
  scopes: [],
9759
9869
  tags: [],
@@ -9796,6 +9906,7 @@ export const salesforceCreateRecordDefinition = {
9796
9906
  provider: "salesforce",
9797
9907
  };
9798
9908
  export const salesforceCreateCaseDefinition = {
9909
+ displayName: "Create a case",
9799
9910
  description: "Create a case or support ticket in Salesforce",
9800
9911
  scopes: [],
9801
9912
  tags: [],
@@ -9850,6 +9961,7 @@ export const salesforceCreateCaseDefinition = {
9850
9961
  provider: "salesforce",
9851
9962
  };
9852
9963
  export const salesforceGenerateSalesReportDefinition = {
9964
+ displayName: "Generate a sales report",
9853
9965
  description: "Generate a sales report from Salesforce",
9854
9966
  scopes: [],
9855
9967
  tags: [],
@@ -9903,6 +10015,7 @@ export const salesforceGenerateSalesReportDefinition = {
9903
10015
  provider: "salesforce",
9904
10016
  };
9905
10017
  export const salesforceSearchAllSalesforceRecordsDefinition = {
10018
+ displayName: "Search all salesforce records",
9906
10019
  description: "Search for all Salesforce records by keyword",
9907
10020
  scopes: [],
9908
10021
  tags: [],
@@ -9992,6 +10105,7 @@ export const salesforceSearchAllSalesforceRecordsDefinition = {
9992
10105
  provider: "salesforce",
9993
10106
  };
9994
10107
  export const salesforceListReportsDefinition = {
10108
+ displayName: "List reports",
9995
10109
  description: "List all available Salesforce reports",
9996
10110
  scopes: [],
9997
10111
  tags: [],
@@ -10026,6 +10140,7 @@ export const salesforceListReportsDefinition = {
10026
10140
  provider: "salesforce",
10027
10141
  };
10028
10142
  export const salesforceExecuteReportDefinition = {
10143
+ displayName: "Execute a Salesforce report",
10029
10144
  description: "Execute a Salesforce report and retrieve its results",
10030
10145
  scopes: [],
10031
10146
  tags: [],
@@ -10061,6 +10176,7 @@ export const salesforceExecuteReportDefinition = {
10061
10176
  provider: "salesforce",
10062
10177
  };
10063
10178
  export const salesforceSearchSalesforceRecordsDefinition = {
10179
+ displayName: "Search Salesforce records",
10064
10180
  description: "Search for Salesforce records by keyword",
10065
10181
  scopes: [],
10066
10182
  tags: [],
@@ -10156,6 +10272,7 @@ export const salesforceSearchSalesforceRecordsDefinition = {
10156
10272
  provider: "salesforce",
10157
10273
  };
10158
10274
  export const salesforceGetSalesforceRecordsByQueryDefinition = {
10275
+ displayName: "Get Salesforce records with a query",
10159
10276
  description: "Retrieve Salesforce records by SOQL query",
10160
10277
  scopes: [],
10161
10278
  tags: [],
@@ -10212,6 +10329,7 @@ export const salesforceGetSalesforceRecordsByQueryDefinition = {
10212
10329
  provider: "salesforce",
10213
10330
  };
10214
10331
  export const salesforceGetRecordDefinition = {
10332
+ displayName: "Get a record",
10215
10333
  description: "Retrieve a record from Salesforce",
10216
10334
  scopes: [],
10217
10335
  tags: [],
@@ -10254,6 +10372,7 @@ export const salesforceGetRecordDefinition = {
10254
10372
  provider: "salesforce",
10255
10373
  };
10256
10374
  export const salesforceGetReportMetadataDefinition = {
10375
+ displayName: "Get Salesforce report metadata",
10257
10376
  description: "Get metadata for a given Salesforce report",
10258
10377
  scopes: [],
10259
10378
  tags: [],
@@ -10336,6 +10455,7 @@ export const salesforceGetReportMetadataDefinition = {
10336
10455
  provider: "salesforce",
10337
10456
  };
10338
10457
  export const microsoftCreateDocumentDefinition = {
10458
+ displayName: "Create a document",
10339
10459
  description: "Creates a new Office365 document",
10340
10460
  scopes: ["Files.ReadWrite", "Sites.Manage.All", "Sites.ReadWrite.All"],
10341
10461
  tags: [],
@@ -10391,6 +10511,7 @@ export const microsoftCreateDocumentDefinition = {
10391
10511
  provider: "microsoft",
10392
10512
  };
10393
10513
  export const microsoftUpdateDocumentDefinition = {
10514
+ displayName: "Update a document",
10394
10515
  description: "Updates a Office365 document",
10395
10516
  scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
10396
10517
  tags: [],
@@ -10434,6 +10555,7 @@ export const microsoftUpdateDocumentDefinition = {
10434
10555
  provider: "microsoft",
10435
10556
  };
10436
10557
  export const microsoftUpdateSpreadsheetDefinition = {
10558
+ displayName: "Update a spreadsheet",
10437
10559
  description: "Updates a Microsoft Excel spreadsheet",
10438
10560
  scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
10439
10561
  tags: [],
@@ -10487,6 +10609,7 @@ export const microsoftUpdateSpreadsheetDefinition = {
10487
10609
  provider: "microsoft",
10488
10610
  };
10489
10611
  export const microsoftMessageTeamsChatDefinition = {
10612
+ displayName: "Message a Teams chat",
10490
10613
  description: "Sends a message to a Microsoft Teams chat",
10491
10614
  scopes: ["ChatMessage.Send"],
10492
10615
  tags: [],
@@ -10526,6 +10649,7 @@ export const microsoftMessageTeamsChatDefinition = {
10526
10649
  provider: "microsoft",
10527
10650
  };
10528
10651
  export const microsoftMessageTeamsChannelDefinition = {
10652
+ displayName: "Message a Teams channel",
10529
10653
  description: "Sends a message to a Microsoft Teams channel",
10530
10654
  scopes: ["ChannelMessage.Send"],
10531
10655
  tags: [],
@@ -10569,6 +10693,7 @@ export const microsoftMessageTeamsChannelDefinition = {
10569
10693
  provider: "microsoft",
10570
10694
  };
10571
10695
  export const microsoftGetDocumentDefinition = {
10696
+ displayName: "Get a document",
10572
10697
  description: "Retrieves the content of a Microsoft Office document",
10573
10698
  scopes: ["Files.ReadWrite", "Sites.ReadWrite.All"],
10574
10699
  tags: [],
@@ -10608,6 +10733,7 @@ export const microsoftGetDocumentDefinition = {
10608
10733
  provider: "microsoft",
10609
10734
  };
10610
10735
  export const githubCreateOrUpdateFileDefinition = {
10736
+ displayName: "Create or update a file",
10611
10737
  description: "Create or update a file in a GitHub repository",
10612
10738
  scopes: [],
10613
10739
  tags: [],
@@ -10674,6 +10800,7 @@ export const githubCreateOrUpdateFileDefinition = {
10674
10800
  provider: "github",
10675
10801
  };
10676
10802
  export const githubCreateBranchDefinition = {
10803
+ displayName: "Create a branch",
10677
10804
  description: "Create a new branch in a GitHub repository",
10678
10805
  scopes: [],
10679
10806
  tags: [],
@@ -10719,6 +10846,7 @@ export const githubCreateBranchDefinition = {
10719
10846
  provider: "github",
10720
10847
  };
10721
10848
  export const githubCreatePullRequestDefinition = {
10849
+ displayName: "Create a pull request",
10722
10850
  description: "Create a pull request in a GitHub repository",
10723
10851
  scopes: [],
10724
10852
  tags: [],
@@ -10780,6 +10908,7 @@ export const githubCreatePullRequestDefinition = {
10780
10908
  provider: "github",
10781
10909
  };
10782
10910
  export const githubListPullRequestsDefinition = {
10911
+ displayName: "List pull requests",
10783
10912
  description: "List pull requests in a GitHub repository",
10784
10913
  scopes: [],
10785
10914
  tags: [],
@@ -10880,6 +11009,7 @@ export const githubListPullRequestsDefinition = {
10880
11009
  provider: "github",
10881
11010
  };
10882
11011
  export const githubGetPullRequestDetailsDefinition = {
11012
+ displayName: "Fetch pull request",
10883
11013
  description: "Get detailed information about a specific pull request including description, files, reviews, and status",
10884
11014
  scopes: [],
10885
11015
  tags: [],
@@ -11160,6 +11290,7 @@ export const githubGetPullRequestDetailsDefinition = {
11160
11290
  provider: "github",
11161
11291
  };
11162
11292
  export const githubGetFileContentDefinition = {
11293
+ displayName: "Fetch file contents",
11163
11294
  description: "Get specified file content from a GitHub repository",
11164
11295
  scopes: [],
11165
11296
  tags: [],
@@ -11239,6 +11370,7 @@ export const githubGetFileContentDefinition = {
11239
11370
  provider: "github",
11240
11371
  };
11241
11372
  export const githubListDirectoryDefinition = {
11373
+ displayName: "List contents of a directory",
11242
11374
  description: "List directory contents of a path in a GitHub repository",
11243
11375
  scopes: [],
11244
11376
  tags: [],
@@ -11317,6 +11449,7 @@ export const githubListDirectoryDefinition = {
11317
11449
  provider: "github",
11318
11450
  };
11319
11451
  export const githubSearchOrganizationDefinition = {
11452
+ displayName: "Search an organization",
11320
11453
  description: "Search for code, issues and pull requests within a GitHub organization",
11321
11454
  scopes: [],
11322
11455
  tags: [],
@@ -11609,6 +11742,7 @@ export const githubSearchOrganizationDefinition = {
11609
11742
  provider: "github",
11610
11743
  };
11611
11744
  export const githubGetBranchDefinition = {
11745
+ displayName: "Get a branch",
11612
11746
  description: "Get a branch in a GitHub repository",
11613
11747
  scopes: [],
11614
11748
  tags: [],
@@ -11868,6 +12002,7 @@ export const githubGetBranchDefinition = {
11868
12002
  provider: "github",
11869
12003
  };
11870
12004
  export const githubListCommitsDefinition = {
12005
+ displayName: "List commits",
11871
12006
  description: "List commits in a GitHub repository with optional date filtering and pagination",
11872
12007
  scopes: [],
11873
12008
  tags: [],
@@ -12055,6 +12190,7 @@ export const githubListCommitsDefinition = {
12055
12190
  provider: "github",
12056
12191
  };
12057
12192
  export const notionSearchByTitleDefinition = {
12193
+ displayName: "Search by title",
12058
12194
  description: "Search Notion pages and databases by title",
12059
12195
  scopes: [],
12060
12196
  tags: [],
@@ -12109,6 +12245,7 @@ export const notionSearchByTitleDefinition = {
12109
12245
  provider: "notion",
12110
12246
  };
12111
12247
  export const gitlabSearchGroupDefinition = {
12248
+ displayName: "Search a group",
12112
12249
  description: "Searches gitlab for details about a query. This will return a list of merge requests and blobs that match the query.",
12113
12250
  scopes: [],
12114
12251
  tags: [],
@@ -12397,6 +12534,7 @@ export const gitlabSearchGroupDefinition = {
12397
12534
  provider: "gitlab",
12398
12535
  };
12399
12536
  export const gitlabGetFileContentDefinition = {
12537
+ displayName: "Get file content",
12400
12538
  description: "Get specified file content from a GitLab repository",
12401
12539
  scopes: [],
12402
12540
  tags: [],
@@ -12477,6 +12615,7 @@ export const gitlabGetFileContentDefinition = {
12477
12615
  provider: "gitlab",
12478
12616
  };
12479
12617
  export const gitlabGetMergeRequestDefinition = {
12618
+ displayName: "Get merge request",
12480
12619
  description: "Get specified merge request from a GitLab repository",
12481
12620
  scopes: [],
12482
12621
  tags: [],
@@ -12700,6 +12839,7 @@ export const gitlabGetMergeRequestDefinition = {
12700
12839
  provider: "gitlab",
12701
12840
  };
12702
12841
  export const gitlabListDirectoryDefinition = {
12842
+ displayName: "List contents of a directory",
12703
12843
  description: "List directory contents of a path in a GitLab repository",
12704
12844
  scopes: [],
12705
12845
  tags: [],
@@ -12790,6 +12930,7 @@ export const gitlabListDirectoryDefinition = {
12790
12930
  provider: "gitlab",
12791
12931
  };
12792
12932
  export const linearGetIssuesDefinition = {
12933
+ displayName: "List or search issues",
12793
12934
  description: "Get Linear issues with optional query filter",
12794
12935
  scopes: [],
12795
12936
  tags: [],
@@ -12920,6 +13061,7 @@ export const linearGetIssuesDefinition = {
12920
13061
  provider: "linear",
12921
13062
  };
12922
13063
  export const linearGetIssueDetailsDefinition = {
13064
+ displayName: "Fetch issue",
12923
13065
  description: "Get detailed information about a Linear issue",
12924
13066
  scopes: [],
12925
13067
  tags: [],
@@ -13081,6 +13223,7 @@ export const linearGetIssueDetailsDefinition = {
13081
13223
  provider: "linear",
13082
13224
  };
13083
13225
  export const linearGetProjectsDefinition = {
13226
+ displayName: "Fetch projects",
13084
13227
  description: "Get all Linear projects",
13085
13228
  scopes: [],
13086
13229
  tags: [],
@@ -13179,6 +13322,7 @@ export const linearGetProjectsDefinition = {
13179
13322
  provider: "linear",
13180
13323
  };
13181
13324
  export const linearGetProjectDetailsDefinition = {
13325
+ displayName: "Get project details",
13182
13326
  description: "Get detailed information about a Linear project",
13183
13327
  scopes: [],
13184
13328
  tags: [],
@@ -13326,6 +13470,7 @@ export const linearGetProjectDetailsDefinition = {
13326
13470
  provider: "linear",
13327
13471
  };
13328
13472
  export const linearGetTeamDetailsDefinition = {
13473
+ displayName: "Get team details",
13329
13474
  description: "Get detailed information about a Linear team",
13330
13475
  scopes: [],
13331
13476
  tags: [],
@@ -13393,6 +13538,7 @@ export const linearGetTeamDetailsDefinition = {
13393
13538
  provider: "linear",
13394
13539
  };
13395
13540
  export const linearGetTeamsDefinition = {
13541
+ displayName: "Get teams",
13396
13542
  description: "Get all teams in Linear",
13397
13543
  scopes: [],
13398
13544
  tags: [],
@@ -13436,6 +13582,7 @@ export const linearGetTeamsDefinition = {
13436
13582
  provider: "linear",
13437
13583
  };
13438
13584
  export const hubspotGetContactsDefinition = {
13585
+ displayName: "Get contacts",
13439
13586
  description: "List or search HubSpot contacts by optional query",
13440
13587
  scopes: ["oauth crm.objects.contacts.read"],
13441
13588
  tags: [],
@@ -13500,6 +13647,7 @@ export const hubspotGetContactsDefinition = {
13500
13647
  provider: "hubspot",
13501
13648
  };
13502
13649
  export const hubspotGetContactDetailsDefinition = {
13650
+ displayName: "Get details of a contact",
13503
13651
  description: "Get detailed information about a specific HubSpot contact",
13504
13652
  scopes: ["oauth crm.objects.contacts.read"],
13505
13653
  tags: [],
@@ -13601,6 +13749,7 @@ export const hubspotGetContactDetailsDefinition = {
13601
13749
  provider: "hubspot",
13602
13750
  };
13603
13751
  export const hubspotGetCompaniesDefinition = {
13752
+ displayName: "Get companies",
13604
13753
  description: "List or search HubSpot companies by optional query",
13605
13754
  scopes: ["oauth crm.objects.companies.read"],
13606
13755
  tags: [],
@@ -13661,6 +13810,7 @@ export const hubspotGetCompaniesDefinition = {
13661
13810
  provider: "hubspot",
13662
13811
  };
13663
13812
  export const hubspotGetCompanyDetailsDefinition = {
13813
+ displayName: "Get details of a company",
13664
13814
  description: "Get detailed information about a specific HubSpot company",
13665
13815
  scopes: ["oauth crm.objects.companies.read"],
13666
13816
  tags: [],
@@ -13754,6 +13904,7 @@ export const hubspotGetCompanyDetailsDefinition = {
13754
13904
  provider: "hubspot",
13755
13905
  };
13756
13906
  export const hubspotGetDealsDefinition = {
13907
+ displayName: "Get deals",
13757
13908
  description: "List or search HubSpot deals by optional query",
13758
13909
  scopes: ["oauth crm.objects.deals.read"],
13759
13910
  tags: [],
@@ -13818,6 +13969,7 @@ export const hubspotGetDealsDefinition = {
13818
13969
  provider: "hubspot",
13819
13970
  };
13820
13971
  export const hubspotGetDealDetailsDefinition = {
13972
+ displayName: "Get details of a deal",
13821
13973
  description: "Get detailed information about a specific HubSpot deal",
13822
13974
  scopes: ["oauth crm.objects.deals.read"],
13823
13975
  tags: [],
@@ -13903,6 +14055,7 @@ export const hubspotGetDealDetailsDefinition = {
13903
14055
  provider: "hubspot",
13904
14056
  };
13905
14057
  export const hubspotGetTicketsDefinition = {
14058
+ displayName: "Get tickets",
13906
14059
  description: "List or search HubSpot tickets by optional query",
13907
14060
  scopes: ["oauth crm.objects.tickets.read"],
13908
14061
  tags: [],
@@ -13963,6 +14116,7 @@ export const hubspotGetTicketsDefinition = {
13963
14116
  provider: "hubspot",
13964
14117
  };
13965
14118
  export const hubspotGetTicketDetailsDefinition = {
14119
+ displayName: "Get details of a ticket",
13966
14120
  description: "Get detailed information about a specific HubSpot ticket",
13967
14121
  scopes: ["oauth crm.objects.tickets.read"],
13968
14122
  tags: [],