integrate-sdk 0.10.0 → 0.10.1
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.
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +196 -110
- package/dist/integrations.js +195 -0
- package/dist/server.js +158 -85
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/integrations/bundle.d.ts +8 -8
- package/dist/src/integrations/bundle.d.ts.map +1 -1
- package/index.ts +23 -234
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -28,10 +28,11 @@
|
|
|
28
28
|
* ```
|
|
29
29
|
*/
|
|
30
30
|
export * from './src/index.js';
|
|
31
|
+
export { allIntegrations, createIntegrationBundle, type IntegrationBundleOptions, } from './src/integrations/bundle.js';
|
|
31
32
|
/**
|
|
32
33
|
* Default MCP Client with all integrations pre-configured
|
|
33
34
|
*
|
|
34
|
-
* This is a singleton client instance that includes
|
|
35
|
+
* This is a singleton client instance that includes every default integration.
|
|
35
36
|
* You can use it directly without having to configure integrations.
|
|
36
37
|
*
|
|
37
38
|
* Default configuration:
|
|
@@ -63,5 +64,5 @@ export * from './src/index.js';
|
|
|
63
64
|
* });
|
|
64
65
|
* ```
|
|
65
66
|
*/
|
|
66
|
-
export declare const client: import("./index.js").MCPClient<
|
|
67
|
+
export declare const client: import("./index.js").MCPClient<import("./index.js").MCPIntegration<string>[]>;
|
|
67
68
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AAEH,cAAc,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AAEH,cAAc,gBAAgB,CAAC;AAE/B,OAAO,EACL,eAAe,EACf,uBAAuB,EACvB,KAAK,wBAAwB,GAC9B,MAAM,8BAA8B,CAAC;AAMtC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,eAAO,MAAM,MAAM,+EAKjB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -14213,6 +14213,199 @@ function createSimpleIntegration(config) {
|
|
|
14213
14213
|
onDisconnect: config.onDisconnect
|
|
14214
14214
|
};
|
|
14215
14215
|
}
|
|
14216
|
+
// src/integrations/bundle.ts
|
|
14217
|
+
function allIntegrations() {
|
|
14218
|
+
return [
|
|
14219
|
+
adobeAcrobatSignIntegration(),
|
|
14220
|
+
airtableIntegration(),
|
|
14221
|
+
amadeusIntegration(),
|
|
14222
|
+
amazonIntegration(),
|
|
14223
|
+
amazonAdsIntegration(),
|
|
14224
|
+
asanaIntegration(),
|
|
14225
|
+
attioIntegration(),
|
|
14226
|
+
azureDevopsIntegration(),
|
|
14227
|
+
bamboohrIntegration(),
|
|
14228
|
+
bigcommerceIntegration(),
|
|
14229
|
+
bigqueryIntegration(),
|
|
14230
|
+
bitbucketIntegration(),
|
|
14231
|
+
boxIntegration(),
|
|
14232
|
+
calcomIntegration(),
|
|
14233
|
+
calendlyIntegration(),
|
|
14234
|
+
canvaIntegration(),
|
|
14235
|
+
canvasLmsIntegration(),
|
|
14236
|
+
clickupIntegration(),
|
|
14237
|
+
cloudflareIntegration(),
|
|
14238
|
+
confluenceIntegration(),
|
|
14239
|
+
contentfulIntegration(),
|
|
14240
|
+
cursorIntegration(),
|
|
14241
|
+
databricksIntegration(),
|
|
14242
|
+
datadogIntegration(),
|
|
14243
|
+
deezerIntegration(),
|
|
14244
|
+
dhlIntegration(),
|
|
14245
|
+
discordIntegration(),
|
|
14246
|
+
docusignIntegration(),
|
|
14247
|
+
dropboxIntegration(),
|
|
14248
|
+
dropboxSignIntegration(),
|
|
14249
|
+
ebayIntegration(),
|
|
14250
|
+
etsyIntegration(),
|
|
14251
|
+
eventbriteIntegration(),
|
|
14252
|
+
exactOnlineIntegration(),
|
|
14253
|
+
excelIntegration(),
|
|
14254
|
+
expediaIntegration(),
|
|
14255
|
+
facebookIntegration(),
|
|
14256
|
+
fedexIntegration(),
|
|
14257
|
+
figmaIntegration(),
|
|
14258
|
+
firebaseIntegration(),
|
|
14259
|
+
fitbitIntegration(),
|
|
14260
|
+
foursquareIntegration(),
|
|
14261
|
+
freeagentIntegration(),
|
|
14262
|
+
freshserviceIntegration(),
|
|
14263
|
+
garminIntegration(),
|
|
14264
|
+
githubIntegration(),
|
|
14265
|
+
gitlabIntegration(),
|
|
14266
|
+
gmailIntegration(),
|
|
14267
|
+
gocardlessIntegration(),
|
|
14268
|
+
googleAdsIntegration(),
|
|
14269
|
+
googleAnalyticsIntegration(),
|
|
14270
|
+
googleCalendarIntegration(),
|
|
14271
|
+
googleChatIntegration(),
|
|
14272
|
+
googleClassroomIntegration(),
|
|
14273
|
+
googleContactsIntegration(),
|
|
14274
|
+
googleDocsIntegration(),
|
|
14275
|
+
googleDriveIntegration(),
|
|
14276
|
+
googleFormsIntegration(),
|
|
14277
|
+
googleHomeIntegration(),
|
|
14278
|
+
googleKeepIntegration(),
|
|
14279
|
+
googleMeetIntegration(),
|
|
14280
|
+
googlePlayConsoleIntegration(),
|
|
14281
|
+
googleSheetsIntegration(),
|
|
14282
|
+
googleSlidesIntegration(),
|
|
14283
|
+
googleTasksIntegration(),
|
|
14284
|
+
greenhouseIntegration(),
|
|
14285
|
+
homeConnectIntegration(),
|
|
14286
|
+
hubspotIntegration(),
|
|
14287
|
+
instagramIntegration(),
|
|
14288
|
+
intercomIntegration(),
|
|
14289
|
+
jiraIntegration(),
|
|
14290
|
+
kickIntegration(),
|
|
14291
|
+
klaviyoIntegration(),
|
|
14292
|
+
leverIntegration(),
|
|
14293
|
+
linearIntegration(),
|
|
14294
|
+
linkedinIntegration(),
|
|
14295
|
+
lookerIntegration(),
|
|
14296
|
+
mailchimpIntegration(),
|
|
14297
|
+
mapmyfitnessIntegration(),
|
|
14298
|
+
meetupIntegration(),
|
|
14299
|
+
metaAdsIntegration(),
|
|
14300
|
+
microsoftAdsIntegration(),
|
|
14301
|
+
microsoftBookingsIntegration(),
|
|
14302
|
+
microsoftEntraIdIntegration(),
|
|
14303
|
+
microsoftGraphEducationIntegration(),
|
|
14304
|
+
microsoftToDoIntegration(),
|
|
14305
|
+
mieleIntegration(),
|
|
14306
|
+
miroIntegration(),
|
|
14307
|
+
mondayIntegration(),
|
|
14308
|
+
moneybirdIntegration(),
|
|
14309
|
+
netatmoIntegration(),
|
|
14310
|
+
netlifyIntegration(),
|
|
14311
|
+
notionIntegration(),
|
|
14312
|
+
oktaIntegration(),
|
|
14313
|
+
onedriveIntegration(),
|
|
14314
|
+
oneloginIntegration(),
|
|
14315
|
+
onenoteIntegration(),
|
|
14316
|
+
ouraIntegration(),
|
|
14317
|
+
outlookIntegration(),
|
|
14318
|
+
pandadocIntegration(),
|
|
14319
|
+
paperIntegration(),
|
|
14320
|
+
paypalIntegration(),
|
|
14321
|
+
phantomIntegration(),
|
|
14322
|
+
philipsHueIntegration(),
|
|
14323
|
+
pinterestIntegration(),
|
|
14324
|
+
pipedriveIntegration(),
|
|
14325
|
+
plaidIntegration(),
|
|
14326
|
+
planetscaleIntegration(),
|
|
14327
|
+
plannerIntegration(),
|
|
14328
|
+
polarIntegration(),
|
|
14329
|
+
posthogIntegration(),
|
|
14330
|
+
powerpointIntegration(),
|
|
14331
|
+
quickbooksIntegration(),
|
|
14332
|
+
railwayIntegration(),
|
|
14333
|
+
rampIntegration(),
|
|
14334
|
+
redditIntegration(),
|
|
14335
|
+
ringIntegration(),
|
|
14336
|
+
sageIntegration(),
|
|
14337
|
+
salesforceIntegration(),
|
|
14338
|
+
sentryIntegration(),
|
|
14339
|
+
sharepointIntegration(),
|
|
14340
|
+
shopifyIntegration(),
|
|
14341
|
+
slackIntegration(),
|
|
14342
|
+
smartsheetIntegration(),
|
|
14343
|
+
smartthingsIntegration(),
|
|
14344
|
+
snowflakeIntegration(),
|
|
14345
|
+
sonosIntegration(),
|
|
14346
|
+
spotifyIntegration(),
|
|
14347
|
+
squareIntegration(),
|
|
14348
|
+
squarespaceIntegration(),
|
|
14349
|
+
stravaIntegration(),
|
|
14350
|
+
stripeIntegration(),
|
|
14351
|
+
supabaseIntegration(),
|
|
14352
|
+
tableauIntegration(),
|
|
14353
|
+
teamsIntegration(),
|
|
14354
|
+
teslaIntegration(),
|
|
14355
|
+
threadsIntegration(),
|
|
14356
|
+
tiktokIntegration(),
|
|
14357
|
+
tiktokBusinessIntegration(),
|
|
14358
|
+
tinkIntegration(),
|
|
14359
|
+
tldrawIntegration(),
|
|
14360
|
+
todoistIntegration(),
|
|
14361
|
+
truelayerIntegration(),
|
|
14362
|
+
tuyaIntegration(),
|
|
14363
|
+
twitchIntegration(),
|
|
14364
|
+
typeformIntegration(),
|
|
14365
|
+
uberIntegration(),
|
|
14366
|
+
uberEatsIntegration(),
|
|
14367
|
+
universeIntegration(),
|
|
14368
|
+
upsIntegration(),
|
|
14369
|
+
vercelIntegration(),
|
|
14370
|
+
webflowIntegration(),
|
|
14371
|
+
whatsappIntegration(),
|
|
14372
|
+
whoopIntegration(),
|
|
14373
|
+
withingsIntegration(),
|
|
14374
|
+
wordIntegration(),
|
|
14375
|
+
wordpressIntegration(),
|
|
14376
|
+
workdayIntegration(),
|
|
14377
|
+
xIntegration(),
|
|
14378
|
+
xeroIntegration(),
|
|
14379
|
+
youtubeIntegration(),
|
|
14380
|
+
zapierIntegration(),
|
|
14381
|
+
zendeskIntegration(),
|
|
14382
|
+
zohoAnalyticsIntegration(),
|
|
14383
|
+
zohoBillingIntegration(),
|
|
14384
|
+
zohoBooksIntegration(),
|
|
14385
|
+
zohoCampaignsIntegration(),
|
|
14386
|
+
zohoCreatorIntegration(),
|
|
14387
|
+
zohoCrmIntegration(),
|
|
14388
|
+
zohoDeskIntegration(),
|
|
14389
|
+
zohoInventoryIntegration(),
|
|
14390
|
+
zohoInvoiceIntegration(),
|
|
14391
|
+
zohoMailIntegration(),
|
|
14392
|
+
zohoPeopleIntegration(),
|
|
14393
|
+
zohoProjectsIntegration(),
|
|
14394
|
+
zohoRecruitIntegration(),
|
|
14395
|
+
zohoSignIntegration(),
|
|
14396
|
+
zohoSprintsIntegration(),
|
|
14397
|
+
zohoWorkdriveIntegration(),
|
|
14398
|
+
zohoWriterIntegration(),
|
|
14399
|
+
zoomIntegration()
|
|
14400
|
+
];
|
|
14401
|
+
}
|
|
14402
|
+
function createIntegrationBundle(options) {
|
|
14403
|
+
const all = allIntegrations();
|
|
14404
|
+
if (!options?.include?.length)
|
|
14405
|
+
return all;
|
|
14406
|
+
const allowed = new Set(options.include);
|
|
14407
|
+
return all.filter((i) => allowed.has(i.id));
|
|
14408
|
+
}
|
|
14216
14409
|
// src/utils/parse-tool-result.ts
|
|
14217
14410
|
function isRecord(value) {
|
|
14218
14411
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
@@ -14277,116 +14470,7 @@ function parseMCPToolResult(result) {
|
|
|
14277
14470
|
}
|
|
14278
14471
|
// index.ts
|
|
14279
14472
|
var client = createMCPClient({
|
|
14280
|
-
integrations:
|
|
14281
|
-
githubIntegration(),
|
|
14282
|
-
gmailIntegration(),
|
|
14283
|
-
notionIntegration(),
|
|
14284
|
-
slackIntegration(),
|
|
14285
|
-
discordIntegration(),
|
|
14286
|
-
boxIntegration(),
|
|
14287
|
-
paypalIntegration(),
|
|
14288
|
-
squareIntegration(),
|
|
14289
|
-
spotifyIntegration(),
|
|
14290
|
-
stravaIntegration(),
|
|
14291
|
-
asanaIntegration(),
|
|
14292
|
-
confluenceIntegration(),
|
|
14293
|
-
oktaIntegration(),
|
|
14294
|
-
quickbooksIntegration(),
|
|
14295
|
-
bitbucketIntegration(),
|
|
14296
|
-
smartthingsIntegration(),
|
|
14297
|
-
googleAdsIntegration(),
|
|
14298
|
-
pinterestIntegration(),
|
|
14299
|
-
twitchIntegration(),
|
|
14300
|
-
xIntegration(),
|
|
14301
|
-
ebayIntegration(),
|
|
14302
|
-
miroIntegration(),
|
|
14303
|
-
smartsheetIntegration(),
|
|
14304
|
-
docusignIntegration(),
|
|
14305
|
-
pipedriveIntegration(),
|
|
14306
|
-
freshserviceIntegration(),
|
|
14307
|
-
zohoCrmIntegration(),
|
|
14308
|
-
zohoMailIntegration(),
|
|
14309
|
-
zohoDeskIntegration(),
|
|
14310
|
-
zohoBooksIntegration(),
|
|
14311
|
-
zohoProjectsIntegration(),
|
|
14312
|
-
zohoCampaignsIntegration(),
|
|
14313
|
-
zohoAnalyticsIntegration(),
|
|
14314
|
-
zohoInvoiceIntegration(),
|
|
14315
|
-
calendlyIntegration(),
|
|
14316
|
-
klaviyoIntegration(),
|
|
14317
|
-
googleFormsIntegration(),
|
|
14318
|
-
firebaseIntegration(),
|
|
14319
|
-
microsoftToDoIntegration(),
|
|
14320
|
-
onenoteIntegration(),
|
|
14321
|
-
microsoftBookingsIntegration(),
|
|
14322
|
-
azureDevopsIntegration(),
|
|
14323
|
-
googlePlayConsoleIntegration(),
|
|
14324
|
-
squarespaceIntegration(),
|
|
14325
|
-
zohoPeopleIntegration(),
|
|
14326
|
-
zohoRecruitIntegration(),
|
|
14327
|
-
zohoSignIntegration(),
|
|
14328
|
-
zohoWorkdriveIntegration(),
|
|
14329
|
-
zohoCreatorIntegration(),
|
|
14330
|
-
zohoInventoryIntegration(),
|
|
14331
|
-
zohoBillingIntegration(),
|
|
14332
|
-
zohoWriterIntegration(),
|
|
14333
|
-
zohoSprintsIntegration(),
|
|
14334
|
-
linearIntegration(),
|
|
14335
|
-
vercelIntegration(),
|
|
14336
|
-
zendeskIntegration(),
|
|
14337
|
-
stripeIntegration(),
|
|
14338
|
-
googleCalendarIntegration(),
|
|
14339
|
-
googleMeetIntegration(),
|
|
14340
|
-
googleTasksIntegration(),
|
|
14341
|
-
googleKeepIntegration(),
|
|
14342
|
-
googleContactsIntegration(),
|
|
14343
|
-
outlookIntegration(),
|
|
14344
|
-
teamsIntegration(),
|
|
14345
|
-
airtableIntegration(),
|
|
14346
|
-
attioIntegration(),
|
|
14347
|
-
todoistIntegration(),
|
|
14348
|
-
whatsappIntegration(),
|
|
14349
|
-
calcomIntegration(),
|
|
14350
|
-
canvaIntegration(),
|
|
14351
|
-
cloudflareIntegration(),
|
|
14352
|
-
rampIntegration(),
|
|
14353
|
-
onedriveIntegration(),
|
|
14354
|
-
plannerIntegration(),
|
|
14355
|
-
sharepointIntegration(),
|
|
14356
|
-
wordIntegration(),
|
|
14357
|
-
excelIntegration(),
|
|
14358
|
-
powerpointIntegration(),
|
|
14359
|
-
googleDocsIntegration(),
|
|
14360
|
-
googleDriveIntegration(),
|
|
14361
|
-
googleSheetsIntegration(),
|
|
14362
|
-
googleSlidesIntegration(),
|
|
14363
|
-
polarIntegration(),
|
|
14364
|
-
facebookIntegration(),
|
|
14365
|
-
figmaIntegration(),
|
|
14366
|
-
intercomIntegration(),
|
|
14367
|
-
hubspotIntegration(),
|
|
14368
|
-
instagramIntegration(),
|
|
14369
|
-
linkedinIntegration(),
|
|
14370
|
-
threadsIntegration(),
|
|
14371
|
-
tiktokIntegration(),
|
|
14372
|
-
typeformIntegration(),
|
|
14373
|
-
xeroIntegration(),
|
|
14374
|
-
googleChatIntegration(),
|
|
14375
|
-
shopifyIntegration(),
|
|
14376
|
-
youtubeIntegration(),
|
|
14377
|
-
zoomIntegration(),
|
|
14378
|
-
redditIntegration(),
|
|
14379
|
-
cursorIntegration(),
|
|
14380
|
-
posthogIntegration(),
|
|
14381
|
-
sentryIntegration(),
|
|
14382
|
-
datadogIntegration(),
|
|
14383
|
-
netlifyIntegration(),
|
|
14384
|
-
mondayIntegration(),
|
|
14385
|
-
webflowIntegration(),
|
|
14386
|
-
jiraIntegration(),
|
|
14387
|
-
salesforceIntegration(),
|
|
14388
|
-
workdayIntegration()
|
|
14389
|
-
],
|
|
14473
|
+
integrations: createIntegrationBundle(),
|
|
14390
14474
|
useServerConfig: true
|
|
14391
14475
|
});
|
|
14392
14476
|
export {
|
|
@@ -14589,6 +14673,7 @@ export {
|
|
|
14589
14673
|
createOAuthRedirectHandler,
|
|
14590
14674
|
createNextOAuthHandler,
|
|
14591
14675
|
createMCPClient,
|
|
14676
|
+
createIntegrationBundle,
|
|
14592
14677
|
convexIntegration,
|
|
14593
14678
|
contentfulIntegration,
|
|
14594
14679
|
confluenceIntegration,
|
|
@@ -14619,6 +14704,7 @@ export {
|
|
|
14619
14704
|
amazonAdsIntegration,
|
|
14620
14705
|
amadeusIntegration,
|
|
14621
14706
|
alpacaIntegration,
|
|
14707
|
+
allIntegrations,
|
|
14622
14708
|
airtableIntegration,
|
|
14623
14709
|
adobeAcrobatSignIntegration,
|
|
14624
14710
|
WEBHOOK_DELIVERY_TIMEOUT_MS,
|
package/dist/integrations.js
CHANGED
|
@@ -14213,6 +14213,199 @@ function createSimpleIntegration(config) {
|
|
|
14213
14213
|
onDisconnect: config.onDisconnect
|
|
14214
14214
|
};
|
|
14215
14215
|
}
|
|
14216
|
+
// src/integrations/bundle.ts
|
|
14217
|
+
function allIntegrations() {
|
|
14218
|
+
return [
|
|
14219
|
+
adobeAcrobatSignIntegration(),
|
|
14220
|
+
airtableIntegration(),
|
|
14221
|
+
amadeusIntegration(),
|
|
14222
|
+
amazonIntegration(),
|
|
14223
|
+
amazonAdsIntegration(),
|
|
14224
|
+
asanaIntegration(),
|
|
14225
|
+
attioIntegration(),
|
|
14226
|
+
azureDevopsIntegration(),
|
|
14227
|
+
bamboohrIntegration(),
|
|
14228
|
+
bigcommerceIntegration(),
|
|
14229
|
+
bigqueryIntegration(),
|
|
14230
|
+
bitbucketIntegration(),
|
|
14231
|
+
boxIntegration(),
|
|
14232
|
+
calcomIntegration(),
|
|
14233
|
+
calendlyIntegration(),
|
|
14234
|
+
canvaIntegration(),
|
|
14235
|
+
canvasLmsIntegration(),
|
|
14236
|
+
clickupIntegration(),
|
|
14237
|
+
cloudflareIntegration(),
|
|
14238
|
+
confluenceIntegration(),
|
|
14239
|
+
contentfulIntegration(),
|
|
14240
|
+
cursorIntegration(),
|
|
14241
|
+
databricksIntegration(),
|
|
14242
|
+
datadogIntegration(),
|
|
14243
|
+
deezerIntegration(),
|
|
14244
|
+
dhlIntegration(),
|
|
14245
|
+
discordIntegration(),
|
|
14246
|
+
docusignIntegration(),
|
|
14247
|
+
dropboxIntegration(),
|
|
14248
|
+
dropboxSignIntegration(),
|
|
14249
|
+
ebayIntegration(),
|
|
14250
|
+
etsyIntegration(),
|
|
14251
|
+
eventbriteIntegration(),
|
|
14252
|
+
exactOnlineIntegration(),
|
|
14253
|
+
excelIntegration(),
|
|
14254
|
+
expediaIntegration(),
|
|
14255
|
+
facebookIntegration(),
|
|
14256
|
+
fedexIntegration(),
|
|
14257
|
+
figmaIntegration(),
|
|
14258
|
+
firebaseIntegration(),
|
|
14259
|
+
fitbitIntegration(),
|
|
14260
|
+
foursquareIntegration(),
|
|
14261
|
+
freeagentIntegration(),
|
|
14262
|
+
freshserviceIntegration(),
|
|
14263
|
+
garminIntegration(),
|
|
14264
|
+
githubIntegration(),
|
|
14265
|
+
gitlabIntegration(),
|
|
14266
|
+
gmailIntegration(),
|
|
14267
|
+
gocardlessIntegration(),
|
|
14268
|
+
googleAdsIntegration(),
|
|
14269
|
+
googleAnalyticsIntegration(),
|
|
14270
|
+
googleCalendarIntegration(),
|
|
14271
|
+
googleChatIntegration(),
|
|
14272
|
+
googleClassroomIntegration(),
|
|
14273
|
+
googleContactsIntegration(),
|
|
14274
|
+
googleDocsIntegration(),
|
|
14275
|
+
googleDriveIntegration(),
|
|
14276
|
+
googleFormsIntegration(),
|
|
14277
|
+
googleHomeIntegration(),
|
|
14278
|
+
googleKeepIntegration(),
|
|
14279
|
+
googleMeetIntegration(),
|
|
14280
|
+
googlePlayConsoleIntegration(),
|
|
14281
|
+
googleSheetsIntegration(),
|
|
14282
|
+
googleSlidesIntegration(),
|
|
14283
|
+
googleTasksIntegration(),
|
|
14284
|
+
greenhouseIntegration(),
|
|
14285
|
+
homeConnectIntegration(),
|
|
14286
|
+
hubspotIntegration(),
|
|
14287
|
+
instagramIntegration(),
|
|
14288
|
+
intercomIntegration(),
|
|
14289
|
+
jiraIntegration(),
|
|
14290
|
+
kickIntegration(),
|
|
14291
|
+
klaviyoIntegration(),
|
|
14292
|
+
leverIntegration(),
|
|
14293
|
+
linearIntegration(),
|
|
14294
|
+
linkedinIntegration(),
|
|
14295
|
+
lookerIntegration(),
|
|
14296
|
+
mailchimpIntegration(),
|
|
14297
|
+
mapmyfitnessIntegration(),
|
|
14298
|
+
meetupIntegration(),
|
|
14299
|
+
metaAdsIntegration(),
|
|
14300
|
+
microsoftAdsIntegration(),
|
|
14301
|
+
microsoftBookingsIntegration(),
|
|
14302
|
+
microsoftEntraIdIntegration(),
|
|
14303
|
+
microsoftGraphEducationIntegration(),
|
|
14304
|
+
microsoftToDoIntegration(),
|
|
14305
|
+
mieleIntegration(),
|
|
14306
|
+
miroIntegration(),
|
|
14307
|
+
mondayIntegration(),
|
|
14308
|
+
moneybirdIntegration(),
|
|
14309
|
+
netatmoIntegration(),
|
|
14310
|
+
netlifyIntegration(),
|
|
14311
|
+
notionIntegration(),
|
|
14312
|
+
oktaIntegration(),
|
|
14313
|
+
onedriveIntegration(),
|
|
14314
|
+
oneloginIntegration(),
|
|
14315
|
+
onenoteIntegration(),
|
|
14316
|
+
ouraIntegration(),
|
|
14317
|
+
outlookIntegration(),
|
|
14318
|
+
pandadocIntegration(),
|
|
14319
|
+
paperIntegration(),
|
|
14320
|
+
paypalIntegration(),
|
|
14321
|
+
phantomIntegration(),
|
|
14322
|
+
philipsHueIntegration(),
|
|
14323
|
+
pinterestIntegration(),
|
|
14324
|
+
pipedriveIntegration(),
|
|
14325
|
+
plaidIntegration(),
|
|
14326
|
+
planetscaleIntegration(),
|
|
14327
|
+
plannerIntegration(),
|
|
14328
|
+
polarIntegration(),
|
|
14329
|
+
posthogIntegration(),
|
|
14330
|
+
powerpointIntegration(),
|
|
14331
|
+
quickbooksIntegration(),
|
|
14332
|
+
railwayIntegration(),
|
|
14333
|
+
rampIntegration(),
|
|
14334
|
+
redditIntegration(),
|
|
14335
|
+
ringIntegration(),
|
|
14336
|
+
sageIntegration(),
|
|
14337
|
+
salesforceIntegration(),
|
|
14338
|
+
sentryIntegration(),
|
|
14339
|
+
sharepointIntegration(),
|
|
14340
|
+
shopifyIntegration(),
|
|
14341
|
+
slackIntegration(),
|
|
14342
|
+
smartsheetIntegration(),
|
|
14343
|
+
smartthingsIntegration(),
|
|
14344
|
+
snowflakeIntegration(),
|
|
14345
|
+
sonosIntegration(),
|
|
14346
|
+
spotifyIntegration(),
|
|
14347
|
+
squareIntegration(),
|
|
14348
|
+
squarespaceIntegration(),
|
|
14349
|
+
stravaIntegration(),
|
|
14350
|
+
stripeIntegration(),
|
|
14351
|
+
supabaseIntegration(),
|
|
14352
|
+
tableauIntegration(),
|
|
14353
|
+
teamsIntegration(),
|
|
14354
|
+
teslaIntegration(),
|
|
14355
|
+
threadsIntegration(),
|
|
14356
|
+
tiktokIntegration(),
|
|
14357
|
+
tiktokBusinessIntegration(),
|
|
14358
|
+
tinkIntegration(),
|
|
14359
|
+
tldrawIntegration(),
|
|
14360
|
+
todoistIntegration(),
|
|
14361
|
+
truelayerIntegration(),
|
|
14362
|
+
tuyaIntegration(),
|
|
14363
|
+
twitchIntegration(),
|
|
14364
|
+
typeformIntegration(),
|
|
14365
|
+
uberIntegration(),
|
|
14366
|
+
uberEatsIntegration(),
|
|
14367
|
+
universeIntegration(),
|
|
14368
|
+
upsIntegration(),
|
|
14369
|
+
vercelIntegration(),
|
|
14370
|
+
webflowIntegration(),
|
|
14371
|
+
whatsappIntegration(),
|
|
14372
|
+
whoopIntegration(),
|
|
14373
|
+
withingsIntegration(),
|
|
14374
|
+
wordIntegration(),
|
|
14375
|
+
wordpressIntegration(),
|
|
14376
|
+
workdayIntegration(),
|
|
14377
|
+
xIntegration(),
|
|
14378
|
+
xeroIntegration(),
|
|
14379
|
+
youtubeIntegration(),
|
|
14380
|
+
zapierIntegration(),
|
|
14381
|
+
zendeskIntegration(),
|
|
14382
|
+
zohoAnalyticsIntegration(),
|
|
14383
|
+
zohoBillingIntegration(),
|
|
14384
|
+
zohoBooksIntegration(),
|
|
14385
|
+
zohoCampaignsIntegration(),
|
|
14386
|
+
zohoCreatorIntegration(),
|
|
14387
|
+
zohoCrmIntegration(),
|
|
14388
|
+
zohoDeskIntegration(),
|
|
14389
|
+
zohoInventoryIntegration(),
|
|
14390
|
+
zohoInvoiceIntegration(),
|
|
14391
|
+
zohoMailIntegration(),
|
|
14392
|
+
zohoPeopleIntegration(),
|
|
14393
|
+
zohoProjectsIntegration(),
|
|
14394
|
+
zohoRecruitIntegration(),
|
|
14395
|
+
zohoSignIntegration(),
|
|
14396
|
+
zohoSprintsIntegration(),
|
|
14397
|
+
zohoWorkdriveIntegration(),
|
|
14398
|
+
zohoWriterIntegration(),
|
|
14399
|
+
zoomIntegration()
|
|
14400
|
+
];
|
|
14401
|
+
}
|
|
14402
|
+
function createIntegrationBundle(options) {
|
|
14403
|
+
const all = allIntegrations();
|
|
14404
|
+
if (!options?.include?.length)
|
|
14405
|
+
return all;
|
|
14406
|
+
const allowed = new Set(options.include);
|
|
14407
|
+
return all.filter((i) => allowed.has(i.id));
|
|
14408
|
+
}
|
|
14216
14409
|
// src/utils/parse-tool-result.ts
|
|
14217
14410
|
function isRecord(value) {
|
|
14218
14411
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
@@ -14475,6 +14668,7 @@ export {
|
|
|
14475
14668
|
createOAuthRedirectHandler,
|
|
14476
14669
|
createNextOAuthHandler,
|
|
14477
14670
|
createMCPClient,
|
|
14671
|
+
createIntegrationBundle,
|
|
14478
14672
|
convexIntegration,
|
|
14479
14673
|
contentfulIntegration,
|
|
14480
14674
|
confluenceIntegration,
|
|
@@ -14504,6 +14698,7 @@ export {
|
|
|
14504
14698
|
amazonAdsIntegration,
|
|
14505
14699
|
amadeusIntegration,
|
|
14506
14700
|
alpacaIntegration,
|
|
14701
|
+
allIntegrations,
|
|
14507
14702
|
airtableIntegration,
|
|
14508
14703
|
adobeAcrobatSignIntegration,
|
|
14509
14704
|
WEBHOOK_DELIVERY_TIMEOUT_MS,
|