integrate-sdk 0.9.46-dev.0 → 0.9.48-dev.0

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.js CHANGED
@@ -870,6 +870,10 @@ var INTEGRATION_LIBRARY_METADATA = {
870
870
  description: "Manage Google Tasks lists and to-dos",
871
871
  category: "Productivity"
872
872
  },
873
+ gkeep: {
874
+ description: "Manage Google Keep notes, attachments, and sharing permissions",
875
+ category: "Productivity"
876
+ },
873
877
  gmeet: {
874
878
  description: "Create Google Meet links and manage meeting events via Calendar",
875
879
  category: "Communication"
@@ -970,6 +974,10 @@ var INTEGRATION_LIBRARY_METADATA = {
970
974
  description: "Send and manage Slack messages and channels",
971
975
  category: "Communication"
972
976
  },
977
+ telegram: {
978
+ description: "Use Telegram as an actual user account via MTProto sessions",
979
+ category: "Communication"
980
+ },
973
981
  stripe: {
974
982
  description: "Manage Stripe customers, payments, and subscriptions",
975
983
  category: "Finance"
@@ -1034,6 +1042,10 @@ var INTEGRATION_LIBRARY_METADATA = {
1034
1042
  description: "Manage Dropbox files, folders, and sharing",
1035
1043
  category: "Storage"
1036
1044
  },
1045
+ box: {
1046
+ description: "Manage Box files, folders, sharing, comments, search, and collaborations",
1047
+ category: "Storage"
1048
+ },
1037
1049
  paper: {
1038
1050
  description: "Create, update, and export Dropbox Paper documents",
1039
1051
  category: "Productivity"
@@ -3210,7 +3222,12 @@ class MCPClientBase {
3210
3222
  if (provider) {
3211
3223
  const tokenData = await this.oauthManager.getProviderToken(provider, undefined, options?.context);
3212
3224
  if (tokenData) {
3213
- temporaryHeaders["Authorization"] = `Bearer ${tokenData.accessToken}`;
3225
+ if (tokenData.sessionToken) {
3226
+ temporaryHeaders["Authorization"] = `Bearer ${tokenData.sessionToken}`;
3227
+ temporaryHeaders["X-Session-Token"] = tokenData.sessionToken;
3228
+ } else {
3229
+ temporaryHeaders["Authorization"] = `Bearer ${tokenData.accessToken}`;
3230
+ }
3214
3231
  }
3215
3232
  }
3216
3233
  const previousHeaders = new Map;
@@ -4937,8 +4954,108 @@ function discordIntegration(config = {}) {
4937
4954
  }
4938
4955
  };
4939
4956
  }
4957
+ // src/integrations/telegram.ts
4958
+ var logger14 = createLogger("Telegram");
4959
+ var TELEGRAM_TOOLS = [
4960
+ "telegram_auth_send_code",
4961
+ "telegram_auth_sign_in",
4962
+ "telegram_auth_check_password",
4963
+ "telegram_get_me",
4964
+ "telegram_resolve_username",
4965
+ "telegram_list_dialogs",
4966
+ "telegram_get_history",
4967
+ "telegram_search_messages",
4968
+ "telegram_send_message"
4969
+ ];
4970
+ function telegramIntegration(options = {}) {
4971
+ const apiId = options.apiId ?? getEnv("TELEGRAM_API_ID");
4972
+ const apiHash = options.apiHash ?? getEnv("TELEGRAM_API_HASH");
4973
+ const sessionId = options.sessionId ?? getEnv("TELEGRAM_SESSION_ID");
4974
+ if (!apiId) {
4975
+ throw new Error("telegramIntegration requires apiId or TELEGRAM_API_ID");
4976
+ }
4977
+ if (!apiHash) {
4978
+ throw new Error("telegramIntegration requires apiHash or TELEGRAM_API_HASH");
4979
+ }
4980
+ return {
4981
+ id: "telegram",
4982
+ name: "Telegram",
4983
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/telegram.png",
4984
+ description: "Use Telegram as an actual user account via MTProto sessions, not the Bot API",
4985
+ category: "Communication",
4986
+ tools: [...TELEGRAM_TOOLS],
4987
+ authType: "apiKey",
4988
+ getHeaders() {
4989
+ const headers = {
4990
+ "X-Telegram-Api-Id": String(apiId),
4991
+ "X-Telegram-Api-Hash": String(apiHash)
4992
+ };
4993
+ if (sessionId) {
4994
+ headers["X-Telegram-Session-Id"] = sessionId;
4995
+ }
4996
+ return headers;
4997
+ },
4998
+ async onInit(_client) {
4999
+ logger14.debug("Telegram integration initialized");
5000
+ },
5001
+ async onAfterConnect(_client) {
5002
+ logger14.debug("Telegram integration connected");
5003
+ }
5004
+ };
5005
+ }
5006
+ // src/integrations/box.ts
5007
+ var logger15 = createLogger("Box");
5008
+ var BOX_TOOLS = [
5009
+ "box_get_current_user",
5010
+ "box_list_folder_items",
5011
+ "box_get_file",
5012
+ "box_get_folder",
5013
+ "box_create_folder",
5014
+ "box_update_file",
5015
+ "box_update_folder",
5016
+ "box_delete_file",
5017
+ "box_delete_folder",
5018
+ "box_upload_text_file",
5019
+ "box_download_file",
5020
+ "box_search",
5021
+ "box_create_shared_link",
5022
+ "box_create_collaboration",
5023
+ "box_list_comments",
5024
+ "box_create_comment",
5025
+ "box_delete_comment"
5026
+ ];
5027
+ function boxIntegration(options = {}) {
5028
+ if (options.scopes !== undefined && (!Array.isArray(options.scopes) || options.scopes.some((scope) => typeof scope !== "string"))) {
5029
+ throw new Error("boxIntegration scopes must be an array of strings");
5030
+ }
5031
+ const oauth = {
5032
+ provider: "box",
5033
+ clientId: options.clientId ?? getEnv("BOX_CLIENT_ID"),
5034
+ clientSecret: options.clientSecret ?? getEnv("BOX_CLIENT_SECRET"),
5035
+ scopes: options.scopes,
5036
+ optionalScopes: options.optionalScopes,
5037
+ redirectUri: options.redirectUri,
5038
+ config: options
5039
+ };
5040
+ return {
5041
+ id: "box",
5042
+ name: "Box",
5043
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/box.png",
5044
+ description: "Manage Box files, folders, sharing, comments, search, and collaborations",
5045
+ category: "Storage",
5046
+ tools: [...BOX_TOOLS],
5047
+ authType: "oauth",
5048
+ oauth,
5049
+ async onInit(_client) {
5050
+ logger15.debug("Box integration initialized");
5051
+ },
5052
+ async onAfterConnect(_client) {
5053
+ logger15.debug("Box integration connected");
5054
+ }
5055
+ };
5056
+ }
4940
5057
  // src/integrations/linear.ts
4941
- var logger14 = createLogger("Linear");
5058
+ var logger16 = createLogger("Linear");
4942
5059
  var LINEAR_TOOLS = [
4943
5060
  "linear_create_issue",
4944
5061
  "linear_list_issues",
@@ -4993,15 +5110,15 @@ function linearIntegration(config = {}) {
4993
5110
  tools: [...LINEAR_TOOLS],
4994
5111
  oauth,
4995
5112
  async onInit(_client) {
4996
- logger14.debug("Linear integration initialized");
5113
+ logger16.debug("Linear integration initialized");
4997
5114
  },
4998
5115
  async onAfterConnect(_client) {
4999
- logger14.debug("Linear integration connected");
5116
+ logger16.debug("Linear integration connected");
5000
5117
  }
5001
5118
  };
5002
5119
  }
5003
5120
  // src/integrations/railway.ts
5004
- var logger15 = createLogger("Railway");
5121
+ var logger17 = createLogger("Railway");
5005
5122
  var RAILWAY_SCOPES = [
5006
5123
  "openid",
5007
5124
  "profile",
@@ -5106,15 +5223,15 @@ function railwayIntegration(config = {}) {
5106
5223
  tools: [...RAILWAY_TOOLS],
5107
5224
  oauth,
5108
5225
  async onInit(_client) {
5109
- logger15.debug("Railway integration initialized");
5226
+ logger17.debug("Railway integration initialized");
5110
5227
  },
5111
5228
  async onAfterConnect(_client) {
5112
- logger15.debug("Railway integration connected");
5229
+ logger17.debug("Railway integration connected");
5113
5230
  }
5114
5231
  };
5115
5232
  }
5116
5233
  // src/integrations/vercel.ts
5117
- var logger16 = createLogger("Vercel");
5234
+ var logger18 = createLogger("Vercel");
5118
5235
  var VERCEL_TOOLS = [
5119
5236
  "vercel_list_projects",
5120
5237
  "vercel_get_project",
@@ -5157,15 +5274,15 @@ function vercelIntegration(config = {}) {
5157
5274
  tools: [...VERCEL_TOOLS],
5158
5275
  oauth,
5159
5276
  async onInit(_client) {
5160
- logger16.debug("Vercel integration initialized");
5277
+ logger18.debug("Vercel integration initialized");
5161
5278
  },
5162
5279
  async onAfterConnect(_client) {
5163
- logger16.debug("Vercel integration connected");
5280
+ logger18.debug("Vercel integration connected");
5164
5281
  }
5165
5282
  };
5166
5283
  }
5167
5284
  // src/integrations/zendesk.ts
5168
- var logger17 = createLogger("Zendesk");
5285
+ var logger19 = createLogger("Zendesk");
5169
5286
  var ZENDESK_TOOLS = [
5170
5287
  "zendesk_list_tickets",
5171
5288
  "zendesk_get_ticket",
@@ -5214,15 +5331,15 @@ function zendeskIntegration(config = {}) {
5214
5331
  tools: [...ZENDESK_TOOLS],
5215
5332
  oauth,
5216
5333
  async onInit(_client) {
5217
- logger17.debug("Zendesk integration initialized");
5334
+ logger19.debug("Zendesk integration initialized");
5218
5335
  },
5219
5336
  async onAfterConnect(_client) {
5220
- logger17.debug("Zendesk integration connected");
5337
+ logger19.debug("Zendesk integration connected");
5221
5338
  }
5222
5339
  };
5223
5340
  }
5224
5341
  // src/integrations/stripe.ts
5225
- var logger18 = createLogger("Stripe");
5342
+ var logger20 = createLogger("Stripe");
5226
5343
  var STRIPE_TOOLS = [
5227
5344
  "stripe_list_customers",
5228
5345
  "stripe_get_customer",
@@ -5279,15 +5396,15 @@ function stripeIntegration(config = {}) {
5279
5396
  tools: [...STRIPE_TOOLS],
5280
5397
  oauth,
5281
5398
  async onInit(_client) {
5282
- logger18.debug("Stripe integration initialized");
5399
+ logger20.debug("Stripe integration initialized");
5283
5400
  },
5284
5401
  async onAfterConnect(_client) {
5285
- logger18.debug("Stripe integration connected");
5402
+ logger20.debug("Stripe integration connected");
5286
5403
  }
5287
5404
  };
5288
5405
  }
5289
5406
  // src/integrations/gcal.ts
5290
- var logger19 = createLogger("Google Calendar");
5407
+ var logger21 = createLogger("Google Calendar");
5291
5408
  var GCAL_TOOLS = [
5292
5409
  "gcal_create_calendar",
5293
5410
  "gcal_create_event",
@@ -5321,15 +5438,15 @@ function gcalIntegration(config = {}) {
5321
5438
  tools: [...GCAL_TOOLS],
5322
5439
  oauth,
5323
5440
  async onInit(_client) {
5324
- logger19.debug("Google Calendar integration initialized");
5441
+ logger21.debug("Google Calendar integration initialized");
5325
5442
  },
5326
5443
  async onAfterConnect(_client) {
5327
- logger19.debug("Google Calendar integration connected");
5444
+ logger21.debug("Google Calendar integration connected");
5328
5445
  }
5329
5446
  };
5330
5447
  }
5331
5448
  // src/integrations/gtasks.ts
5332
- var logger20 = createLogger("Google Tasks");
5449
+ var logger22 = createLogger("Google Tasks");
5333
5450
  var GTASKS_TOOLS = [
5334
5451
  "gtasks_clear_completed",
5335
5452
  "gtasks_create_task",
@@ -5365,15 +5482,55 @@ function gtasksIntegration(config = {}) {
5365
5482
  tools: [...GTASKS_TOOLS],
5366
5483
  oauth,
5367
5484
  async onInit(_client) {
5368
- logger20.debug("Google Tasks integration initialized");
5485
+ logger22.debug("Google Tasks integration initialized");
5486
+ },
5487
+ async onAfterConnect(_client) {
5488
+ logger22.debug("Google Tasks integration connected");
5489
+ }
5490
+ };
5491
+ }
5492
+ // src/integrations/gkeep.ts
5493
+ var logger23 = createLogger("Google Keep");
5494
+ var GKEEP_TOOLS = [
5495
+ "gkeep_list_notes",
5496
+ "gkeep_get_note",
5497
+ "gkeep_create_text_note",
5498
+ "gkeep_create_list_note",
5499
+ "gkeep_delete_note",
5500
+ "gkeep_download_attachment",
5501
+ "gkeep_batch_create_permissions",
5502
+ "gkeep_batch_delete_permissions"
5503
+ ];
5504
+ function gkeepIntegration(config = {}) {
5505
+ const oauth = {
5506
+ provider: "gkeep",
5507
+ clientId: config.clientId ?? getEnv("GKEEP_CLIENT_ID"),
5508
+ clientSecret: config.clientSecret ?? getEnv("GKEEP_CLIENT_SECRET"),
5509
+ scopes: config.scopes,
5510
+ optionalScopes: config.optionalScopes,
5511
+ redirectUri: config.redirectUri,
5512
+ config: {
5513
+ ...config
5514
+ }
5515
+ };
5516
+ return {
5517
+ id: "gkeep",
5518
+ name: "Google Keep",
5519
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/google_keep.png",
5520
+ description: "Manage Google Keep notes, attachments, and sharing permissions",
5521
+ category: "Productivity",
5522
+ tools: [...GKEEP_TOOLS],
5523
+ oauth,
5524
+ async onInit(_client) {
5525
+ logger23.debug("Google Keep integration initialized");
5369
5526
  },
5370
5527
  async onAfterConnect(_client) {
5371
- logger20.debug("Google Tasks integration connected");
5528
+ logger23.debug("Google Keep integration connected");
5372
5529
  }
5373
5530
  };
5374
5531
  }
5375
5532
  // src/integrations/gcontacts.ts
5376
- var logger21 = createLogger("Google Contacts");
5533
+ var logger24 = createLogger("Google Contacts");
5377
5534
  var GCONTACTS_TOOLS = [
5378
5535
  "gcontacts_batch_get_contacts",
5379
5536
  "gcontacts_copy_other_contact",
@@ -5407,15 +5564,15 @@ function gcontactsIntegration(config = {}) {
5407
5564
  tools: [...GCONTACTS_TOOLS],
5408
5565
  oauth,
5409
5566
  async onInit(_client) {
5410
- logger21.debug("Google Contacts integration initialized");
5567
+ logger24.debug("Google Contacts integration initialized");
5411
5568
  },
5412
5569
  async onAfterConnect(_client) {
5413
- logger21.debug("Google Contacts integration connected");
5570
+ logger24.debug("Google Contacts integration connected");
5414
5571
  }
5415
5572
  };
5416
5573
  }
5417
5574
  // src/integrations/outlook.ts
5418
- var logger22 = createLogger("Outlook");
5575
+ var logger25 = createLogger("Outlook");
5419
5576
  var OUTLOOK_TOOLS = [
5420
5577
  "outlook_accept_event",
5421
5578
  "outlook_create_draft",
@@ -5462,15 +5619,15 @@ function outlookIntegration(config = {}) {
5462
5619
  tools: [...OUTLOOK_TOOLS],
5463
5620
  oauth,
5464
5621
  async onInit(_client) {
5465
- logger22.debug("Outlook integration initialized");
5622
+ logger25.debug("Outlook integration initialized");
5466
5623
  },
5467
5624
  async onAfterConnect(_client) {
5468
- logger22.debug("Outlook integration connected");
5625
+ logger25.debug("Outlook integration connected");
5469
5626
  }
5470
5627
  };
5471
5628
  }
5472
5629
  // src/integrations/teams.ts
5473
- var logger23 = createLogger("Teams");
5630
+ var logger26 = createLogger("Teams");
5474
5631
  var TEAMS_SCOPES = [
5475
5632
  "offline_access",
5476
5633
  "User.Read",
@@ -5520,15 +5677,15 @@ function teamsIntegration(config = {}) {
5520
5677
  tools: [...TEAMS_TOOLS],
5521
5678
  oauth,
5522
5679
  async onInit(_client) {
5523
- logger23.debug("Teams integration initialized");
5680
+ logger26.debug("Teams integration initialized");
5524
5681
  },
5525
5682
  async onAfterConnect(_client) {
5526
- logger23.debug("Teams integration connected");
5683
+ logger26.debug("Teams integration connected");
5527
5684
  }
5528
5685
  };
5529
5686
  }
5530
5687
  // src/integrations/airtable.ts
5531
- var logger24 = createLogger("Airtable");
5688
+ var logger27 = createLogger("Airtable");
5532
5689
  var AIRTABLE_TOOLS = [
5533
5690
  "airtable_list_bases",
5534
5691
  "airtable_get_base",
@@ -5574,15 +5731,15 @@ function airtableIntegration(config = {}) {
5574
5731
  tools: [...AIRTABLE_TOOLS],
5575
5732
  oauth,
5576
5733
  async onInit(_client) {
5577
- logger24.debug("Airtable integration initialized");
5734
+ logger27.debug("Airtable integration initialized");
5578
5735
  },
5579
5736
  async onAfterConnect(_client) {
5580
- logger24.debug("Airtable integration connected");
5737
+ logger27.debug("Airtable integration connected");
5581
5738
  }
5582
5739
  };
5583
5740
  }
5584
5741
  // src/integrations/astronomer.ts
5585
- var logger25 = createLogger("Astronomer");
5742
+ var logger28 = createLogger("Astronomer");
5586
5743
  var ASTRONOMER_TOOLS = [
5587
5744
  "astronomer_get_self",
5588
5745
  "astronomer_list_organizations",
@@ -5617,15 +5774,15 @@ function astronomerIntegration(options = {}) {
5617
5774
  };
5618
5775
  },
5619
5776
  async onInit(_client) {
5620
- logger25.debug("Astronomer integration initialized");
5777
+ logger28.debug("Astronomer integration initialized");
5621
5778
  },
5622
5779
  async onAfterConnect(_client) {
5623
- logger25.debug("Astronomer integration connected");
5780
+ logger28.debug("Astronomer integration connected");
5624
5781
  }
5625
5782
  };
5626
5783
  }
5627
5784
  // src/integrations/betterstack.ts
5628
- var logger26 = createLogger("BetterStack");
5785
+ var logger29 = createLogger("BetterStack");
5629
5786
  var BETTERSTACK_TOOLS = [
5630
5787
  "betterstack_list_sources",
5631
5788
  "betterstack_get_source",
@@ -5658,15 +5815,15 @@ function betterstackIntegration(options = {}) {
5658
5815
  };
5659
5816
  },
5660
5817
  async onInit(_client) {
5661
- logger26.debug("Better Stack integration initialized");
5818
+ logger29.debug("Better Stack integration initialized");
5662
5819
  },
5663
5820
  async onAfterConnect(_client) {
5664
- logger26.debug("Better Stack integration connected");
5821
+ logger29.debug("Better Stack integration connected");
5665
5822
  }
5666
5823
  };
5667
5824
  }
5668
5825
  // src/integrations/todoist.ts
5669
- var logger27 = createLogger("Todoist");
5826
+ var logger30 = createLogger("Todoist");
5670
5827
  var TODOIST_TOOLS = [
5671
5828
  "todoist_list_projects",
5672
5829
  "todoist_get_project",
@@ -5721,15 +5878,15 @@ function todoistIntegration(config = {}) {
5721
5878
  tools: [...TODOIST_TOOLS],
5722
5879
  oauth,
5723
5880
  async onInit(_client) {
5724
- logger27.debug("Todoist integration initialized");
5881
+ logger30.debug("Todoist integration initialized");
5725
5882
  },
5726
5883
  async onAfterConnect(_client) {
5727
- logger27.debug("Todoist integration connected");
5884
+ logger30.debug("Todoist integration connected");
5728
5885
  }
5729
5886
  };
5730
5887
  }
5731
5888
  // src/integrations/whatsapp.ts
5732
- var logger28 = createLogger("WhatsApp");
5889
+ var logger31 = createLogger("WhatsApp");
5733
5890
  var WHATSAPP_TOOLS = [
5734
5891
  "whatsapp_send_message",
5735
5892
  "whatsapp_reply_message",
@@ -5778,15 +5935,15 @@ function whatsappIntegration(config = {}) {
5778
5935
  tools: [...WHATSAPP_TOOLS],
5779
5936
  oauth,
5780
5937
  async onInit(_client) {
5781
- logger28.debug("WhatsApp Business integration initialized");
5938
+ logger31.debug("WhatsApp Business integration initialized");
5782
5939
  },
5783
5940
  async onAfterConnect(_client) {
5784
- logger28.debug("WhatsApp Business integration connected");
5941
+ logger31.debug("WhatsApp Business integration connected");
5785
5942
  }
5786
5943
  };
5787
5944
  }
5788
5945
  // src/integrations/calcom.ts
5789
- var logger29 = createLogger("Cal.com");
5946
+ var logger32 = createLogger("Cal.com");
5790
5947
  var CALCOM_TOOLS = [
5791
5948
  "calcom_list_bookings",
5792
5949
  "calcom_get_booking",
@@ -5862,15 +6019,15 @@ function calcomIntegration(config = {}) {
5862
6019
  tools: [...CALCOM_TOOLS],
5863
6020
  oauth,
5864
6021
  async onInit(_client) {
5865
- logger29.debug("Cal.com integration initialized");
6022
+ logger32.debug("Cal.com integration initialized");
5866
6023
  },
5867
6024
  async onAfterConnect(_client) {
5868
- logger29.debug("Cal.com integration connected");
6025
+ logger32.debug("Cal.com integration connected");
5869
6026
  }
5870
6027
  };
5871
6028
  }
5872
6029
  // src/integrations/ramp.ts
5873
- var logger30 = createLogger("Ramp");
6030
+ var logger33 = createLogger("Ramp");
5874
6031
  var RAMP_TOOLS = [
5875
6032
  "ramp_list_transactions",
5876
6033
  "ramp_get_transaction",
@@ -5902,15 +6059,15 @@ function rampIntegration(config = {}) {
5902
6059
  tools: [...RAMP_TOOLS],
5903
6060
  oauth,
5904
6061
  async onInit(_client) {
5905
- logger30.debug("Ramp integration initialized");
6062
+ logger33.debug("Ramp integration initialized");
5906
6063
  },
5907
6064
  async onAfterConnect(_client) {
5908
- logger30.debug("Ramp integration connected");
6065
+ logger33.debug("Ramp integration connected");
5909
6066
  }
5910
6067
  };
5911
6068
  }
5912
6069
  // src/integrations/onedrive.ts
5913
- var logger31 = createLogger("OneDrive");
6070
+ var logger34 = createLogger("OneDrive");
5914
6071
  var ONEDRIVE_TOOLS = [
5915
6072
  "onedrive_create_folder",
5916
6073
  "onedrive_delete_file",
@@ -5942,10 +6099,10 @@ function onedriveIntegration(config = {}) {
5942
6099
  tools: [...ONEDRIVE_TOOLS],
5943
6100
  oauth,
5944
6101
  async onInit(_client) {
5945
- logger31.debug("OneDrive integration initialized");
6102
+ logger34.debug("OneDrive integration initialized");
5946
6103
  },
5947
6104
  async onAfterConnect(_client) {
5948
- logger31.debug("OneDrive integration connected");
6105
+ logger34.debug("OneDrive integration connected");
5949
6106
  }
5950
6107
  };
5951
6108
  }
@@ -5983,7 +6140,7 @@ function plannerIntegration(config = {}) {
5983
6140
  };
5984
6141
  }
5985
6142
  // src/integrations/dropbox.ts
5986
- var logger32 = createLogger("Dropbox");
6143
+ var logger35 = createLogger("Dropbox");
5987
6144
  var DROPBOX_TOOLS = [
5988
6145
  "dropbox_get_current_account",
5989
6146
  "dropbox_get_space_usage",
@@ -6025,15 +6182,15 @@ function dropboxIntegration(options = {}) {
6025
6182
  authType: "oauth",
6026
6183
  oauth,
6027
6184
  async onInit(_client) {
6028
- logger32.debug("Dropbox integration initialized");
6185
+ logger35.debug("Dropbox integration initialized");
6029
6186
  },
6030
6187
  async onAfterConnect(_client) {
6031
- logger32.debug("Dropbox integration connected");
6188
+ logger35.debug("Dropbox integration connected");
6032
6189
  }
6033
6190
  };
6034
6191
  }
6035
6192
  // src/integrations/paper.ts
6036
- var logger33 = createLogger("Paper");
6193
+ var logger36 = createLogger("Paper");
6037
6194
  var PAPER_SCOPES = [
6038
6195
  "account_info.read",
6039
6196
  "files.metadata.read",
@@ -6079,15 +6236,15 @@ function paperIntegration(config = {}) {
6079
6236
  authType: "oauth",
6080
6237
  oauth,
6081
6238
  async onInit(_client) {
6082
- logger33.debug("Paper integration initialized");
6239
+ logger36.debug("Paper integration initialized");
6083
6240
  },
6084
6241
  async onAfterConnect(_client) {
6085
- logger33.debug("Paper integration connected");
6242
+ logger36.debug("Paper integration connected");
6086
6243
  }
6087
6244
  };
6088
6245
  }
6089
6246
  // src/integrations/gdocs.ts
6090
- var logger34 = createLogger("Google Docs");
6247
+ var logger37 = createLogger("Google Docs");
6091
6248
  var GDOCS_TOOLS = [
6092
6249
  "gdocs_append_text",
6093
6250
  "gdocs_batch_update",
@@ -6117,15 +6274,15 @@ function gdocsIntegration(config = {}) {
6117
6274
  tools: [...GDOCS_TOOLS],
6118
6275
  oauth,
6119
6276
  async onInit(_client) {
6120
- logger34.debug("Google Docs integration initialized");
6277
+ logger37.debug("Google Docs integration initialized");
6121
6278
  },
6122
6279
  async onAfterConnect(_client) {
6123
- logger34.debug("Google Docs integration connected");
6280
+ logger37.debug("Google Docs integration connected");
6124
6281
  }
6125
6282
  };
6126
6283
  }
6127
6284
  // src/integrations/gsheets.ts
6128
- var logger35 = createLogger("Google Sheets");
6285
+ var logger38 = createLogger("Google Sheets");
6129
6286
  var GSHEETS_TOOLS = [
6130
6287
  "gsheets_append_values",
6131
6288
  "gsheets_batch_update",
@@ -6155,15 +6312,15 @@ function gsheetsIntegration(config = {}) {
6155
6312
  tools: [...GSHEETS_TOOLS],
6156
6313
  oauth,
6157
6314
  async onInit(_client) {
6158
- logger35.debug("Google Sheets integration initialized");
6315
+ logger38.debug("Google Sheets integration initialized");
6159
6316
  },
6160
6317
  async onAfterConnect(_client) {
6161
- logger35.debug("Google Sheets integration connected");
6318
+ logger38.debug("Google Sheets integration connected");
6162
6319
  }
6163
6320
  };
6164
6321
  }
6165
6322
  // src/integrations/gslides.ts
6166
- var logger36 = createLogger("Google Slides");
6323
+ var logger39 = createLogger("Google Slides");
6167
6324
  var GSLIDES_TOOLS = [
6168
6325
  "gslides_add_slide",
6169
6326
  "gslides_batch_update",
@@ -6192,15 +6349,15 @@ function gslidesIntegration(config = {}) {
6192
6349
  tools: [...GSLIDES_TOOLS],
6193
6350
  oauth,
6194
6351
  async onInit(_client) {
6195
- logger36.debug("Google Slides integration initialized");
6352
+ logger39.debug("Google Slides integration initialized");
6196
6353
  },
6197
6354
  async onAfterConnect(_client) {
6198
- logger36.debug("Google Slides integration connected");
6355
+ logger39.debug("Google Slides integration connected");
6199
6356
  }
6200
6357
  };
6201
6358
  }
6202
6359
  // src/integrations/polar.ts
6203
- var logger37 = createLogger("Polar");
6360
+ var logger40 = createLogger("Polar");
6204
6361
  var POLAR_TOOLS = [
6205
6362
  "polar_list_products",
6206
6363
  "polar_get_product",
@@ -6257,15 +6414,15 @@ function polarIntegration(config = {}) {
6257
6414
  tools: [...POLAR_TOOLS],
6258
6415
  oauth,
6259
6416
  async onInit(_client) {
6260
- logger37.debug("Polar integration initialized");
6417
+ logger40.debug("Polar integration initialized");
6261
6418
  },
6262
6419
  async onAfterConnect(_client) {
6263
- logger37.debug("Polar integration connected");
6420
+ logger40.debug("Polar integration connected");
6264
6421
  }
6265
6422
  };
6266
6423
  }
6267
6424
  // src/integrations/supabase.ts
6268
- var logger38 = createLogger("Supabase");
6425
+ var logger41 = createLogger("Supabase");
6269
6426
  var SUPABASE_API_BASE = "https://api.supabase.com";
6270
6427
  var SUPABASE_TOOLS = [
6271
6428
  "supabase_get_profile",
@@ -6303,10 +6460,10 @@ function supabaseIntegration(config = {}) {
6303
6460
  };
6304
6461
  },
6305
6462
  async onInit(_client) {
6306
- logger38.debug("Supabase integration initialized (personal access token)");
6463
+ logger41.debug("Supabase integration initialized (personal access token)");
6307
6464
  },
6308
6465
  async onAfterConnect(_client) {
6309
- logger38.debug("Supabase integration connected");
6466
+ logger41.debug("Supabase integration connected");
6310
6467
  }
6311
6468
  };
6312
6469
  }
@@ -6336,15 +6493,15 @@ function supabaseIntegration(config = {}) {
6336
6493
  tools: [...SUPABASE_TOOLS],
6337
6494
  oauth,
6338
6495
  async onInit(_client) {
6339
- logger38.debug("Supabase integration initialized");
6496
+ logger41.debug("Supabase integration initialized");
6340
6497
  },
6341
6498
  async onAfterConnect(_client) {
6342
- logger38.debug("Supabase integration connected");
6499
+ logger41.debug("Supabase integration connected");
6343
6500
  }
6344
6501
  };
6345
6502
  }
6346
6503
  // src/integrations/phantom.ts
6347
- var logger39 = createLogger("Phantom");
6504
+ var logger42 = createLogger("Phantom");
6348
6505
  var PHANTOM_TOOLS = [
6349
6506
  "phantom_build_browse_deeplink",
6350
6507
  "phantom_deeplink_provider_reference"
@@ -6366,15 +6523,15 @@ function phantomIntegration(_options = {}) {
6366
6523
  category: "Other",
6367
6524
  tools: [...PHANTOM_TOOLS],
6368
6525
  async onInit(_client) {
6369
- logger39.debug("Phantom integration initialized");
6526
+ logger42.debug("Phantom integration initialized");
6370
6527
  },
6371
6528
  async onAfterConnect(_client) {
6372
- logger39.debug("Phantom integration connected");
6529
+ logger42.debug("Phantom integration connected");
6373
6530
  }
6374
6531
  };
6375
6532
  }
6376
6533
  // src/integrations/facebook.ts
6377
- var logger40 = createLogger("Facebook");
6534
+ var logger43 = createLogger("Facebook");
6378
6535
  var FACEBOOK_SCOPES = [
6379
6536
  "public_profile",
6380
6537
  "email",
@@ -6420,15 +6577,15 @@ function facebookIntegration(config = {}) {
6420
6577
  tools: [...FACEBOOK_TOOLS],
6421
6578
  oauth,
6422
6579
  async onInit(_client) {
6423
- logger40.debug("Facebook integration initialized");
6580
+ logger43.debug("Facebook integration initialized");
6424
6581
  },
6425
6582
  async onAfterConnect(_client) {
6426
- logger40.debug("Facebook integration connected");
6583
+ logger43.debug("Facebook integration connected");
6427
6584
  }
6428
6585
  };
6429
6586
  }
6430
6587
  // src/integrations/figma.ts
6431
- var logger41 = createLogger("Figma");
6588
+ var logger44 = createLogger("Figma");
6432
6589
  var FIGMA_TOOLS = [
6433
6590
  "figma_get_file",
6434
6591
  "figma_get_file_nodes",
@@ -6494,15 +6651,15 @@ function figmaIntegration(config = {}) {
6494
6651
  tools: [...FIGMA_TOOLS],
6495
6652
  oauth,
6496
6653
  async onInit(_client) {
6497
- logger41.debug("Figma integration initialized");
6654
+ logger44.debug("Figma integration initialized");
6498
6655
  },
6499
6656
  async onAfterConnect(_client) {
6500
- logger41.debug("Figma integration connected");
6657
+ logger44.debug("Figma integration connected");
6501
6658
  }
6502
6659
  };
6503
6660
  }
6504
6661
  // src/integrations/intercom.ts
6505
- var logger42 = createLogger("Intercom");
6662
+ var logger45 = createLogger("Intercom");
6506
6663
  var INTERCOM_TOOLS = [
6507
6664
  "intercom_list_contacts",
6508
6665
  "intercom_get_contact",
@@ -6533,15 +6690,15 @@ function intercomIntegration(config = {}) {
6533
6690
  tools: [...INTERCOM_TOOLS],
6534
6691
  oauth,
6535
6692
  async onInit(_client) {
6536
- logger42.debug("Intercom integration initialized");
6693
+ logger45.debug("Intercom integration initialized");
6537
6694
  },
6538
6695
  async onAfterConnect(_client) {
6539
- logger42.debug("Intercom integration connected");
6696
+ logger45.debug("Intercom integration connected");
6540
6697
  }
6541
6698
  };
6542
6699
  }
6543
6700
  // src/integrations/hubspot.ts
6544
- var logger43 = createLogger("HubSpot");
6701
+ var logger46 = createLogger("HubSpot");
6545
6702
  var HUBSPOT_TOOLS = [
6546
6703
  "hubspot_list_contacts",
6547
6704
  "hubspot_get_contact",
@@ -6591,15 +6748,15 @@ function hubspotIntegration(config = {}) {
6591
6748
  tools: [...HUBSPOT_TOOLS],
6592
6749
  oauth,
6593
6750
  async onInit(_client) {
6594
- logger43.debug("HubSpot integration initialized");
6751
+ logger46.debug("HubSpot integration initialized");
6595
6752
  },
6596
6753
  async onAfterConnect(_client) {
6597
- logger43.debug("HubSpot integration connected");
6754
+ logger46.debug("HubSpot integration connected");
6598
6755
  }
6599
6756
  };
6600
6757
  }
6601
6758
  // src/integrations/instagram.ts
6602
- var logger44 = createLogger("Instagram");
6759
+ var logger47 = createLogger("Instagram");
6603
6760
  var INSTAGRAM_SCOPES = [
6604
6761
  "pages_show_list",
6605
6762
  "pages_read_engagement",
@@ -6649,15 +6806,15 @@ function instagramIntegration(config = {}) {
6649
6806
  tools: [...INSTAGRAM_TOOLS],
6650
6807
  oauth,
6651
6808
  async onInit(_client) {
6652
- logger44.debug("Instagram integration initialized");
6809
+ logger47.debug("Instagram integration initialized");
6653
6810
  },
6654
6811
  async onAfterConnect(_client) {
6655
- logger44.debug("Instagram integration connected");
6812
+ logger47.debug("Instagram integration connected");
6656
6813
  }
6657
6814
  };
6658
6815
  }
6659
6816
  // src/integrations/youtube.ts
6660
- var logger45 = createLogger("YouTube");
6817
+ var logger48 = createLogger("YouTube");
6661
6818
  var YOUTUBE_TOOLS = [
6662
6819
  "youtube_add_comment",
6663
6820
  "youtube_add_to_playlist",
@@ -6703,15 +6860,15 @@ function youtubeIntegration(config = {}) {
6703
6860
  tools: [...YOUTUBE_TOOLS],
6704
6861
  oauth,
6705
6862
  async onInit(_client) {
6706
- logger45.debug("YouTube integration initialized");
6863
+ logger48.debug("YouTube integration initialized");
6707
6864
  },
6708
6865
  async onAfterConnect(_client) {
6709
- logger45.debug("YouTube integration connected");
6866
+ logger48.debug("YouTube integration connected");
6710
6867
  }
6711
6868
  };
6712
6869
  }
6713
6870
  // src/integrations/cursor.ts
6714
- var logger46 = createLogger("Cursor");
6871
+ var logger49 = createLogger("Cursor");
6715
6872
  var CURSOR_TOOLS = [
6716
6873
  "cursor_list_agents",
6717
6874
  "cursor_get_agent",
@@ -6731,15 +6888,15 @@ function cursorIntegration(_config = {}) {
6731
6888
  logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/cursor.jpeg",
6732
6889
  tools: [...CURSOR_TOOLS],
6733
6890
  async onInit(_client) {
6734
- logger46.debug("Cursor integration initialized");
6891
+ logger49.debug("Cursor integration initialized");
6735
6892
  },
6736
6893
  async onAfterConnect(_client) {
6737
- logger46.debug("Cursor integration connected");
6894
+ logger49.debug("Cursor integration connected");
6738
6895
  }
6739
6896
  };
6740
6897
  }
6741
6898
  // src/integrations/databricks.ts
6742
- var logger47 = createLogger("Databricks");
6899
+ var logger50 = createLogger("Databricks");
6743
6900
  var DATABRICKS_SCOPES = ["all-apis", "offline_access"];
6744
6901
  var DATABRICKS_TOOLS = [
6745
6902
  "databricks_current_user",
@@ -6786,15 +6943,15 @@ function databricksIntegration(config = {}) {
6786
6943
  tools: [...DATABRICKS_TOOLS],
6787
6944
  oauth,
6788
6945
  async onInit(_client) {
6789
- logger47.debug("Databricks integration initialized");
6946
+ logger50.debug("Databricks integration initialized");
6790
6947
  },
6791
6948
  async onAfterConnect(_client) {
6792
- logger47.debug("Databricks integration connected");
6949
+ logger50.debug("Databricks integration connected");
6793
6950
  }
6794
6951
  };
6795
6952
  }
6796
6953
  // src/integrations/posthog.ts
6797
- var logger48 = createLogger("PostHog");
6954
+ var logger51 = createLogger("PostHog");
6798
6955
  var DEFAULT_POSTHOG_BASE_URL = "https://us.posthog.com";
6799
6956
  var POSTHOG_SCOPES = [
6800
6957
  "openid",
@@ -6880,15 +7037,15 @@ function posthogIntegration(config = {}) {
6880
7037
  tools: [...POSTHOG_TOOLS],
6881
7038
  oauth,
6882
7039
  async onInit(_client) {
6883
- logger48.debug("PostHog integration initialized");
7040
+ logger51.debug("PostHog integration initialized");
6884
7041
  },
6885
7042
  async onAfterConnect(_client) {
6886
- logger48.debug("PostHog integration connected");
7043
+ logger51.debug("PostHog integration connected");
6887
7044
  }
6888
7045
  };
6889
7046
  }
6890
7047
  // src/integrations/postman.ts
6891
- var logger49 = createLogger("Postman");
7048
+ var logger52 = createLogger("Postman");
6892
7049
  var POSTMAN_TOOLS = [
6893
7050
  "postman_get_me",
6894
7051
  "postman_list_workspaces",
@@ -6919,15 +7076,15 @@ function postmanIntegration(options = {}) {
6919
7076
  };
6920
7077
  },
6921
7078
  async onInit(_client) {
6922
- logger49.debug("Postman integration initialized");
7079
+ logger52.debug("Postman integration initialized");
6923
7080
  },
6924
7081
  async onAfterConnect(_client) {
6925
- logger49.debug("Postman integration connected");
7082
+ logger52.debug("Postman integration connected");
6926
7083
  }
6927
7084
  };
6928
7085
  }
6929
7086
  // src/integrations/sentry.ts
6930
- var logger50 = createLogger("Sentry");
7087
+ var logger53 = createLogger("Sentry");
6931
7088
  var SENTRY_SCOPES = [
6932
7089
  "org:read",
6933
7090
  "project:read",
@@ -6976,15 +7133,15 @@ function sentryIntegration(config = {}) {
6976
7133
  tools: [...SENTRY_TOOLS],
6977
7134
  oauth,
6978
7135
  async onInit(_client) {
6979
- logger50.debug("Sentry integration initialized");
7136
+ logger53.debug("Sentry integration initialized");
6980
7137
  },
6981
7138
  async onAfterConnect(_client) {
6982
- logger50.debug("Sentry integration connected");
7139
+ logger53.debug("Sentry integration connected");
6983
7140
  }
6984
7141
  };
6985
7142
  }
6986
7143
  // src/integrations/datadog.ts
6987
- var logger51 = createLogger("Datadog");
7144
+ var logger54 = createLogger("Datadog");
6988
7145
  var DATADOG_SCOPES = [
6989
7146
  "monitors_read",
6990
7147
  "dashboards_read",
@@ -7014,10 +7171,10 @@ function datadogIntegration(config = {}) {
7014
7171
  category: "Engineering",
7015
7172
  tools: [...DATADOG_TOOLS],
7016
7173
  async onInit(_client) {
7017
- logger51.debug("Datadog integration initialized");
7174
+ logger54.debug("Datadog integration initialized");
7018
7175
  },
7019
7176
  async onAfterConnect(_client) {
7020
- logger51.debug("Datadog integration connected");
7177
+ logger54.debug("Datadog integration connected");
7021
7178
  }
7022
7179
  };
7023
7180
  if (apiKey || applicationKey) {
@@ -7058,7 +7215,7 @@ function datadogIntegration(config = {}) {
7058
7215
  };
7059
7216
  }
7060
7217
  // src/integrations/netlify.ts
7061
- var logger52 = createLogger("Netlify");
7218
+ var logger55 = createLogger("Netlify");
7062
7219
  var NETLIFY_TOOLS = [
7063
7220
  "netlify_get_current_user",
7064
7221
  "netlify_list_accounts",
@@ -7121,15 +7278,15 @@ function netlifyIntegration(config = {}) {
7121
7278
  tools: [...NETLIFY_TOOLS],
7122
7279
  oauth,
7123
7280
  async onInit(_client) {
7124
- logger52.debug("Netlify integration initialized");
7281
+ logger55.debug("Netlify integration initialized");
7125
7282
  },
7126
7283
  async onAfterConnect(_client) {
7127
- logger52.debug("Netlify integration connected");
7284
+ logger55.debug("Netlify integration connected");
7128
7285
  }
7129
7286
  };
7130
7287
  }
7131
7288
  // src/integrations/redis.ts
7132
- var logger53 = createLogger("Redis Cloud");
7289
+ var logger56 = createLogger("Redis Cloud");
7133
7290
  var REDIS_TOOLS = [
7134
7291
  "redis_list_subscriptions",
7135
7292
  "redis_get_subscription",
@@ -7184,15 +7341,15 @@ function redisIntegration(options = {}) {
7184
7341
  };
7185
7342
  },
7186
7343
  async onInit(_client) {
7187
- logger53.debug("Redis Cloud integration initialized");
7344
+ logger56.debug("Redis Cloud integration initialized");
7188
7345
  },
7189
7346
  async onAfterConnect(_client) {
7190
- logger53.debug("Redis Cloud integration connected");
7347
+ logger56.debug("Redis Cloud integration connected");
7191
7348
  }
7192
7349
  };
7193
7350
  }
7194
7351
  // src/integrations/webflow.ts
7195
- var logger54 = createLogger("Webflow");
7352
+ var logger57 = createLogger("Webflow");
7196
7353
  var WEBFLOW_TOOLS = [
7197
7354
  "webflow_token_introspect",
7198
7355
  "webflow_get_authorized_user",
@@ -7251,15 +7408,15 @@ function webflowIntegration(config = {}) {
7251
7408
  tools: [...WEBFLOW_TOOLS],
7252
7409
  oauth,
7253
7410
  async onInit(_client) {
7254
- logger54.debug("Webflow integration initialized");
7411
+ logger57.debug("Webflow integration initialized");
7255
7412
  },
7256
7413
  async onAfterConnect(_client) {
7257
- logger54.debug("Webflow integration connected");
7414
+ logger57.debug("Webflow integration connected");
7258
7415
  }
7259
7416
  };
7260
7417
  }
7261
7418
  // src/integrations/jira.ts
7262
- var logger55 = createLogger("Jira");
7419
+ var logger58 = createLogger("Jira");
7263
7420
  var JIRA_SCOPES = [
7264
7421
  "read:jira-work",
7265
7422
  "write:jira-work",
@@ -7304,15 +7461,15 @@ function jiraIntegration(config = {}) {
7304
7461
  tools: [...JIRA_TOOLS],
7305
7462
  oauth,
7306
7463
  async onInit(_client) {
7307
- logger55.debug("Jira integration initialized");
7464
+ logger58.debug("Jira integration initialized");
7308
7465
  },
7309
7466
  async onAfterConnect(_client) {
7310
- logger55.debug("Jira integration connected");
7467
+ logger58.debug("Jira integration connected");
7311
7468
  }
7312
7469
  };
7313
7470
  }
7314
7471
  // src/integrations/linkedin.ts
7315
- var logger56 = createLogger("LinkedIn");
7472
+ var logger59 = createLogger("LinkedIn");
7316
7473
  var LINKEDIN_SCOPES = ["openid", "profile", "email", "w_member_social"];
7317
7474
  var LINKEDIN_TOOLS = ["linkedin_get_userinfo", "linkedin_create_post"];
7318
7475
  function linkedinIntegration(config = {}) {
@@ -7339,15 +7496,15 @@ function linkedinIntegration(config = {}) {
7339
7496
  tools: [...LINKEDIN_TOOLS],
7340
7497
  oauth,
7341
7498
  async onInit(_client) {
7342
- logger56.debug("LinkedIn integration initialized");
7499
+ logger59.debug("LinkedIn integration initialized");
7343
7500
  },
7344
7501
  async onAfterConnect(_client) {
7345
- logger56.debug("LinkedIn integration connected");
7502
+ logger59.debug("LinkedIn integration connected");
7346
7503
  }
7347
7504
  };
7348
7505
  }
7349
7506
  // src/integrations/threads.ts
7350
- var logger57 = createLogger("Threads");
7507
+ var logger60 = createLogger("Threads");
7351
7508
  var THREADS_SCOPES = [
7352
7509
  "threads_basic",
7353
7510
  "threads_content_publish",
@@ -7398,15 +7555,15 @@ function threadsIntegration(config = {}) {
7398
7555
  tools: [...THREADS_TOOLS],
7399
7556
  oauth,
7400
7557
  async onInit(_client) {
7401
- logger57.debug("Threads integration initialized");
7558
+ logger60.debug("Threads integration initialized");
7402
7559
  },
7403
7560
  async onAfterConnect(_client) {
7404
- logger57.debug("Threads integration connected");
7561
+ logger60.debug("Threads integration connected");
7405
7562
  }
7406
7563
  };
7407
7564
  }
7408
7565
  // src/integrations/tiktok.ts
7409
- var logger58 = createLogger("TikTok");
7566
+ var logger61 = createLogger("TikTok");
7410
7567
  var TIKTOK_SCOPES = ["user.info.basic", "video.list"];
7411
7568
  var TIKTOK_TOOLS = [
7412
7569
  "tiktok_get_user_info",
@@ -7437,15 +7594,15 @@ function tiktokIntegration(config = {}) {
7437
7594
  tools: [...TIKTOK_TOOLS],
7438
7595
  oauth,
7439
7596
  async onInit(_client) {
7440
- logger58.debug("TikTok integration initialized");
7597
+ logger61.debug("TikTok integration initialized");
7441
7598
  },
7442
7599
  async onAfterConnect(_client) {
7443
- logger58.debug("TikTok integration connected");
7600
+ logger61.debug("TikTok integration connected");
7444
7601
  }
7445
7602
  };
7446
7603
  }
7447
7604
  // src/integrations/trello.ts
7448
- var logger59 = createLogger("Trello");
7605
+ var logger62 = createLogger("Trello");
7449
7606
  var TRELLO_TOOLS = [
7450
7607
  "trello_get_member",
7451
7608
  "trello_list_boards",
@@ -7482,15 +7639,15 @@ function trelloIntegration(options = {}) {
7482
7639
  return { Authorization: `Bearer ${encodeCredential(apiKey, memberToken)}` };
7483
7640
  },
7484
7641
  async onInit(_client) {
7485
- logger59.debug("Trello integration initialized");
7642
+ logger62.debug("Trello integration initialized");
7486
7643
  },
7487
7644
  async onAfterConnect(_client) {
7488
- logger59.debug("Trello integration connected");
7645
+ logger62.debug("Trello integration connected");
7489
7646
  }
7490
7647
  };
7491
7648
  }
7492
7649
  // src/integrations/typeform.ts
7493
- var logger60 = createLogger("Typeform");
7650
+ var logger63 = createLogger("Typeform");
7494
7651
  var TYPEFORM_SCOPES = [
7495
7652
  "offline",
7496
7653
  "accounts:read",
@@ -7534,15 +7691,15 @@ function typeformIntegration(config = {}) {
7534
7691
  tools: [...TYPEFORM_TOOLS],
7535
7692
  oauth,
7536
7693
  async onInit(_client) {
7537
- logger60.debug("Typeform integration initialized");
7694
+ logger63.debug("Typeform integration initialized");
7538
7695
  },
7539
7696
  async onAfterConnect(_client) {
7540
- logger60.debug("Typeform integration connected");
7697
+ logger63.debug("Typeform integration connected");
7541
7698
  }
7542
7699
  };
7543
7700
  }
7544
7701
  // src/integrations/sharepoint.ts
7545
- var logger61 = createLogger("SharePoint");
7702
+ var logger64 = createLogger("SharePoint");
7546
7703
  var SHAREPOINT_SCOPES = ["Sites.ReadWrite.All", "Files.ReadWrite.All", "offline_access"];
7547
7704
  var SHAREPOINT_TOOLS = [
7548
7705
  "sharepoint_create_folder",
@@ -7581,15 +7738,15 @@ function sharepointIntegration(config = {}) {
7581
7738
  tools: [...SHAREPOINT_TOOLS],
7582
7739
  oauth,
7583
7740
  async onInit(_client) {
7584
- logger61.debug("SharePoint integration initialized");
7741
+ logger64.debug("SharePoint integration initialized");
7585
7742
  },
7586
7743
  async onAfterConnect(_client) {
7587
- logger61.debug("SharePoint integration connected");
7744
+ logger64.debug("SharePoint integration connected");
7588
7745
  }
7589
7746
  };
7590
7747
  }
7591
7748
  // src/integrations/xero.ts
7592
- var logger62 = createLogger("Xero");
7749
+ var logger65 = createLogger("Xero");
7593
7750
  var XERO_SCOPES = [
7594
7751
  "openid",
7595
7752
  "profile",
@@ -7636,15 +7793,15 @@ function xeroIntegration(config = {}) {
7636
7793
  tools: [...XERO_TOOLS],
7637
7794
  oauth,
7638
7795
  async onInit(_client) {
7639
- logger62.debug("Xero integration initialized");
7796
+ logger65.debug("Xero integration initialized");
7640
7797
  },
7641
7798
  async onAfterConnect(_client) {
7642
- logger62.debug("Xero integration connected");
7799
+ logger65.debug("Xero integration connected");
7643
7800
  }
7644
7801
  };
7645
7802
  }
7646
7803
  // src/integrations/salesforce.ts
7647
- var logger63 = createLogger("Salesforce");
7804
+ var logger66 = createLogger("Salesforce");
7648
7805
  var SALESFORCE_TOOLS = [
7649
7806
  "salesforce_query",
7650
7807
  "salesforce_get_limits",
@@ -7675,15 +7832,15 @@ function salesforceIntegration(config = {}) {
7675
7832
  tools: [...SALESFORCE_TOOLS],
7676
7833
  oauth,
7677
7834
  async onInit(_client) {
7678
- logger63.debug("Salesforce integration initialized");
7835
+ logger66.debug("Salesforce integration initialized");
7679
7836
  },
7680
7837
  async onAfterConnect(_client) {
7681
- logger63.debug("Salesforce integration connected");
7838
+ logger66.debug("Salesforce integration connected");
7682
7839
  }
7683
7840
  };
7684
7841
  }
7685
7842
  // src/integrations/attio.ts
7686
- var logger64 = createLogger("Attio");
7843
+ var logger67 = createLogger("Attio");
7687
7844
  var ATTIO_SCOPES = [
7688
7845
  "record_permission:read-write",
7689
7846
  "object_configuration:read",
@@ -7729,15 +7886,15 @@ function attioIntegration(config = {}) {
7729
7886
  tools: [...ATTIO_TOOLS],
7730
7887
  oauth,
7731
7888
  async onInit(_client) {
7732
- logger64.debug("Attio integration initialized");
7889
+ logger67.debug("Attio integration initialized");
7733
7890
  },
7734
7891
  async onAfterConnect(_client) {
7735
- logger64.debug("Attio integration connected");
7892
+ logger67.debug("Attio integration connected");
7736
7893
  }
7737
7894
  };
7738
7895
  }
7739
7896
  // src/integrations/gchat.ts
7740
- var logger65 = createLogger("Google Chat");
7897
+ var logger68 = createLogger("Google Chat");
7741
7898
  var GCHAT_SCOPES = [
7742
7899
  "https://www.googleapis.com/auth/chat.messages",
7743
7900
  "https://www.googleapis.com/auth/chat.spaces.readonly"
@@ -7776,15 +7933,15 @@ function gchatIntegration(config = {}) {
7776
7933
  tools: [...GCHAT_TOOLS],
7777
7934
  oauth,
7778
7935
  async onInit(_client) {
7779
- logger65.debug("Google Chat integration initialized");
7936
+ logger68.debug("Google Chat integration initialized");
7780
7937
  },
7781
7938
  async onAfterConnect(_client) {
7782
- logger65.debug("Google Chat integration connected");
7939
+ logger68.debug("Google Chat integration connected");
7783
7940
  }
7784
7941
  };
7785
7942
  }
7786
7943
  // src/integrations/shopify.ts
7787
- var logger66 = createLogger("Shopify");
7944
+ var logger69 = createLogger("Shopify");
7788
7945
  var SHOPIFY_SCOPES = [
7789
7946
  "read_products",
7790
7947
  "write_products",
@@ -7833,15 +7990,15 @@ function shopifyIntegration(config = {}) {
7833
7990
  tools: [...SHOPIFY_TOOLS],
7834
7991
  oauth,
7835
7992
  async onInit(_client) {
7836
- logger66.debug("Shopify integration initialized");
7993
+ logger69.debug("Shopify integration initialized");
7837
7994
  },
7838
7995
  async onAfterConnect(_client) {
7839
- logger66.debug("Shopify integration connected");
7996
+ logger69.debug("Shopify integration connected");
7840
7997
  }
7841
7998
  };
7842
7999
  }
7843
8000
  // src/integrations/convex.ts
7844
- var logger67 = createLogger("Convex");
8001
+ var logger70 = createLogger("Convex");
7845
8002
  var CONVEX_TOOLS = [
7846
8003
  "convex_management_token_details",
7847
8004
  "convex_management_list_projects",
@@ -7878,15 +8035,15 @@ function convexIntegration(options = {}) {
7878
8035
  return { Authorization: `Bearer ${accessToken}` };
7879
8036
  },
7880
8037
  async onInit(_client) {
7881
- logger67.debug("Convex integration initialized");
8038
+ logger70.debug("Convex integration initialized");
7882
8039
  },
7883
8040
  async onAfterConnect(_client) {
7884
- logger67.debug("Convex integration connected");
8041
+ logger70.debug("Convex integration connected");
7885
8042
  }
7886
8043
  };
7887
8044
  }
7888
8045
  // src/integrations/etoro.ts
7889
- var logger68 = createLogger("eToro");
8046
+ var logger71 = createLogger("eToro");
7890
8047
  var ETORO_TOOLS = [
7891
8048
  "etoro_get_identity",
7892
8049
  "etoro_get_portfolio",
@@ -7916,15 +8073,15 @@ function etoroIntegration(options = {}) {
7916
8073
  };
7917
8074
  },
7918
8075
  async onInit(_client) {
7919
- logger68.debug("eToro integration initialized");
8076
+ logger71.debug("eToro integration initialized");
7920
8077
  },
7921
8078
  async onAfterConnect(_client) {
7922
- logger68.debug("eToro integration connected");
8079
+ logger71.debug("eToro integration connected");
7923
8080
  }
7924
8081
  };
7925
8082
  }
7926
8083
  // src/integrations/alpaca.ts
7927
- var logger69 = createLogger("Alpaca");
8084
+ var logger72 = createLogger("Alpaca");
7928
8085
  var ALPACA_TOOLS = [
7929
8086
  "alpaca_get_account",
7930
8087
  "alpaca_list_positions",
@@ -7966,15 +8123,15 @@ function alpacaIntegration(options = {}) {
7966
8123
  return headers;
7967
8124
  },
7968
8125
  async onInit(_client) {
7969
- logger69.debug("Alpaca integration initialized");
8126
+ logger72.debug("Alpaca integration initialized");
7970
8127
  },
7971
8128
  async onAfterConnect(_client) {
7972
- logger69.debug("Alpaca integration connected");
8129
+ logger72.debug("Alpaca integration connected");
7973
8130
  }
7974
8131
  };
7975
8132
  }
7976
8133
  // src/integrations/neon.ts
7977
- var logger70 = createLogger("Neon");
8134
+ var logger73 = createLogger("Neon");
7978
8135
  var NEON_TOOLS = [
7979
8136
  "neon_list_api_keys",
7980
8137
  "neon_create_api_key",
@@ -8014,15 +8171,15 @@ function neonIntegration(options = {}) {
8014
8171
  };
8015
8172
  },
8016
8173
  async onInit(_client) {
8017
- logger70.debug("Neon integration initialized");
8174
+ logger73.debug("Neon integration initialized");
8018
8175
  },
8019
8176
  async onAfterConnect(_client) {
8020
- logger70.debug("Neon integration connected");
8177
+ logger73.debug("Neon integration connected");
8021
8178
  }
8022
8179
  };
8023
8180
  }
8024
8181
  // src/integrations/workos.ts
8025
- var logger71 = createLogger("WorkOS");
8182
+ var logger74 = createLogger("WorkOS");
8026
8183
  var WORKOS_TOOLS = [
8027
8184
  "workos_list_organizations",
8028
8185
  "workos_get_organization",
@@ -8055,15 +8212,15 @@ function workosIntegration(options = {}) {
8055
8212
  };
8056
8213
  },
8057
8214
  async onInit(_client) {
8058
- logger71.debug("WorkOS integration initialized");
8215
+ logger74.debug("WorkOS integration initialized");
8059
8216
  },
8060
8217
  async onAfterConnect(_client) {
8061
- logger71.debug("WorkOS integration connected");
8218
+ logger74.debug("WorkOS integration connected");
8062
8219
  }
8063
8220
  };
8064
8221
  }
8065
8222
  // src/integrations/workday.ts
8066
- var logger72 = createLogger("Workday");
8223
+ var logger75 = createLogger("Workday");
8067
8224
  var WORKDAY_TOOLS = [
8068
8225
  "workday_list_workers",
8069
8226
  "workday_get_worker"
@@ -8088,10 +8245,10 @@ function workdayIntegration(config = {}) {
8088
8245
  tools: [...WORKDAY_TOOLS],
8089
8246
  oauth,
8090
8247
  async onInit(_client) {
8091
- logger72.debug("Workday integration initialized");
8248
+ logger75.debug("Workday integration initialized");
8092
8249
  },
8093
8250
  async onAfterConnect(_client) {
8094
- logger72.debug("Workday integration connected");
8251
+ logger75.debug("Workday integration connected");
8095
8252
  }
8096
8253
  };
8097
8254
  }
@@ -8114,7 +8271,7 @@ function tldrawIntegration(options = {}) {
8114
8271
  };
8115
8272
  }
8116
8273
  // src/integrations/upstash.ts
8117
- var logger73 = createLogger("Upstash");
8274
+ var logger76 = createLogger("Upstash");
8118
8275
  var UPSTASH_TOOLS = [
8119
8276
  "upstash_redis_run",
8120
8277
  "upstash_redis_get",
@@ -8154,10 +8311,10 @@ function upstashIntegration(options = {}) {
8154
8311
  return headers;
8155
8312
  },
8156
8313
  async onInit(_client) {
8157
- logger73.debug("Upstash integration initialized");
8314
+ logger76.debug("Upstash integration initialized");
8158
8315
  },
8159
8316
  async onAfterConnect(_client) {
8160
- logger73.debug("Upstash integration connected");
8317
+ logger76.debug("Upstash integration connected");
8161
8318
  }
8162
8319
  };
8163
8320
  }
@@ -8294,7 +8451,7 @@ function mailchimpIntegration(config = {}) {
8294
8451
  };
8295
8452
  }
8296
8453
  // src/integrations/aws.ts
8297
- var logger74 = createLogger("AWS");
8454
+ var logger77 = createLogger("AWS");
8298
8455
  var AWS_TOOLS = [
8299
8456
  "aws_sts_get_caller_identity",
8300
8457
  "aws_ec2_describe_regions",
@@ -8347,15 +8504,15 @@ function awsIntegration(options = {}) {
8347
8504
  };
8348
8505
  },
8349
8506
  async onInit(_client) {
8350
- logger74.debug("AWS integration initialized");
8507
+ logger77.debug("AWS integration initialized");
8351
8508
  },
8352
8509
  async onAfterConnect(_client) {
8353
- logger74.debug("AWS integration connected");
8510
+ logger77.debug("AWS integration connected");
8354
8511
  }
8355
8512
  };
8356
8513
  }
8357
8514
  // src/integrations/wix.ts
8358
- var logger75 = createLogger("Wix");
8515
+ var logger78 = createLogger("Wix");
8359
8516
  var WIX_TOOLS = [
8360
8517
  "wix_query_products",
8361
8518
  "wix_get_product",
@@ -8388,15 +8545,15 @@ function wixIntegration(options = {}) {
8388
8545
  };
8389
8546
  },
8390
8547
  async onInit(_client) {
8391
- logger75.debug("Wix integration initialized");
8548
+ logger78.debug("Wix integration initialized");
8392
8549
  },
8393
8550
  async onAfterConnect(_client) {
8394
- logger75.debug("Wix integration connected");
8551
+ logger78.debug("Wix integration connected");
8395
8552
  }
8396
8553
  };
8397
8554
  }
8398
8555
  // src/integrations/auth0.ts
8399
- var logger76 = createLogger("Auth0");
8556
+ var logger79 = createLogger("Auth0");
8400
8557
  var AUTH0_TOOLS = [
8401
8558
  "auth0_list_users",
8402
8559
  "auth0_get_user",
@@ -8485,7 +8642,7 @@ function auth0Integration(options) {
8485
8642
  };
8486
8643
  },
8487
8644
  async onInit() {
8488
- logger76.debug("Auth0 integration initialized");
8645
+ logger79.debug("Auth0 integration initialized");
8489
8646
  },
8490
8647
  async onBeforeConnect() {
8491
8648
  await ensureFreshToken();
@@ -8494,12 +8651,12 @@ function auth0Integration(options) {
8494
8651
  }
8495
8652
  },
8496
8653
  async onAfterConnect() {
8497
- logger76.debug("Auth0 integration connected");
8654
+ logger79.debug("Auth0 integration connected");
8498
8655
  }
8499
8656
  };
8500
8657
  }
8501
8658
  // src/integrations/binance.ts
8502
- var logger77 = createLogger("Binance");
8659
+ var logger80 = createLogger("Binance");
8503
8660
  var BINANCE_TOOLS = [
8504
8661
  "binance_ping",
8505
8662
  "binance_get_server_time",
@@ -8542,15 +8699,15 @@ function binanceIntegration(options = {}) {
8542
8699
  };
8543
8700
  },
8544
8701
  async onInit(_client) {
8545
- logger77.debug("Binance integration initialized");
8702
+ logger80.debug("Binance integration initialized");
8546
8703
  },
8547
8704
  async onAfterConnect(_client) {
8548
- logger77.debug("Binance integration connected");
8705
+ logger80.debug("Binance integration connected");
8549
8706
  }
8550
8707
  };
8551
8708
  }
8552
8709
  // src/integrations/canva.ts
8553
- var logger78 = createLogger("Canva");
8710
+ var logger81 = createLogger("Canva");
8554
8711
  var CANVA_TOOLS = [
8555
8712
  "canva_get_me",
8556
8713
  "canva_get_profile",
@@ -8587,15 +8744,15 @@ function canvaIntegration(config = {}) {
8587
8744
  tools: [...CANVA_TOOLS],
8588
8745
  oauth,
8589
8746
  async onInit(_client) {
8590
- logger78.debug("Canva integration initialized");
8747
+ logger81.debug("Canva integration initialized");
8591
8748
  },
8592
8749
  async onAfterConnect(_client) {
8593
- logger78.debug("Canva integration connected");
8750
+ logger81.debug("Canva integration connected");
8594
8751
  }
8595
8752
  };
8596
8753
  }
8597
8754
  // src/integrations/clerk.ts
8598
- var logger79 = createLogger("Clerk");
8755
+ var logger82 = createLogger("Clerk");
8599
8756
  var CLERK_TOOLS = [
8600
8757
  "clerk_list_users",
8601
8758
  "clerk_get_user",
@@ -8630,15 +8787,15 @@ function clerkIntegration(options = {}) {
8630
8787
  };
8631
8788
  },
8632
8789
  async onInit(_client) {
8633
- logger79.debug("Clerk integration initialized");
8790
+ logger82.debug("Clerk integration initialized");
8634
8791
  },
8635
8792
  async onAfterConnect(_client) {
8636
- logger79.debug("Clerk integration connected");
8793
+ logger82.debug("Clerk integration connected");
8637
8794
  }
8638
8795
  };
8639
8796
  }
8640
8797
  // src/integrations/cloudflare.ts
8641
- var logger80 = createLogger("Cloudflare");
8798
+ var logger83 = createLogger("Cloudflare");
8642
8799
  var CLOUDFLARE_TOOLS = [
8643
8800
  "cloudflare_verify_token",
8644
8801
  "cloudflare_get_user",
@@ -8677,10 +8834,10 @@ function cloudflareIntegration(config = {}) {
8677
8834
  return { Authorization: `Bearer ${apiToken.trim()}` };
8678
8835
  },
8679
8836
  async onInit(_client) {
8680
- logger80.debug("Cloudflare integration initialized (API token)");
8837
+ logger83.debug("Cloudflare integration initialized (API token)");
8681
8838
  },
8682
8839
  async onAfterConnect(_client) {
8683
- logger80.debug("Cloudflare integration connected");
8840
+ logger83.debug("Cloudflare integration connected");
8684
8841
  }
8685
8842
  };
8686
8843
  }
@@ -8706,15 +8863,15 @@ function cloudflareIntegration(config = {}) {
8706
8863
  tools: [...CLOUDFLARE_TOOLS],
8707
8864
  oauth,
8708
8865
  async onInit(_client) {
8709
- logger80.debug("Cloudflare integration initialized (OAuth)");
8866
+ logger83.debug("Cloudflare integration initialized (OAuth)");
8710
8867
  },
8711
8868
  async onAfterConnect(_client) {
8712
- logger80.debug("Cloudflare integration connected");
8869
+ logger83.debug("Cloudflare integration connected");
8713
8870
  }
8714
8871
  };
8715
8872
  }
8716
8873
  // src/integrations/clickup.ts
8717
- var logger81 = createLogger("ClickUp");
8874
+ var logger84 = createLogger("ClickUp");
8718
8875
  var CLICKUP_TOOLS = [
8719
8876
  "clickup_get_authorized_user",
8720
8877
  "clickup_list_teams",
@@ -8750,15 +8907,15 @@ function clickupIntegration(config = {}) {
8750
8907
  tools: [...CLICKUP_TOOLS],
8751
8908
  oauth,
8752
8909
  async onInit(_client) {
8753
- logger81.debug("ClickUp integration initialized");
8910
+ logger84.debug("ClickUp integration initialized");
8754
8911
  },
8755
8912
  async onAfterConnect(_client) {
8756
- logger81.debug("ClickUp integration connected");
8913
+ logger84.debug("ClickUp integration connected");
8757
8914
  }
8758
8915
  };
8759
8916
  }
8760
8917
  // src/integrations/excel.ts
8761
- var logger82 = createLogger("Excel");
8918
+ var logger85 = createLogger("Excel");
8762
8919
  var EXCEL_TOOLS = [
8763
8920
  "excel_add_table_rows",
8764
8921
  "excel_add_worksheet",
@@ -8794,10 +8951,10 @@ function excelIntegration(config = {}) {
8794
8951
  tools: [...EXCEL_TOOLS],
8795
8952
  oauth,
8796
8953
  async onInit(_client) {
8797
- logger82.debug("Excel integration initialized");
8954
+ logger85.debug("Excel integration initialized");
8798
8955
  },
8799
8956
  async onAfterConnect(_client) {
8800
- logger82.debug("Excel integration connected");
8957
+ logger85.debug("Excel integration connected");
8801
8958
  }
8802
8959
  };
8803
8960
  }
@@ -8827,7 +8984,7 @@ function ga4Integration(config = {}) {
8827
8984
  };
8828
8985
  }
8829
8986
  // src/integrations/gdrive.ts
8830
- var logger83 = createLogger("Google Drive");
8987
+ var logger86 = createLogger("Google Drive");
8831
8988
  var GDRIVE_TOOLS = [
8832
8989
  "gdrive_copy_file",
8833
8990
  "gdrive_create_folder",
@@ -8861,15 +9018,15 @@ function gdriveIntegration(config = {}) {
8861
9018
  tools: [...GDRIVE_TOOLS],
8862
9019
  oauth,
8863
9020
  async onInit(_client) {
8864
- logger83.debug("Google Drive integration initialized");
9021
+ logger86.debug("Google Drive integration initialized");
8865
9022
  },
8866
9023
  async onAfterConnect(_client) {
8867
- logger83.debug("Google Drive integration connected");
9024
+ logger86.debug("Google Drive integration connected");
8868
9025
  }
8869
9026
  };
8870
9027
  }
8871
9028
  // src/integrations/gitlab.ts
8872
- var logger84 = createLogger("GitLab");
9029
+ var logger87 = createLogger("GitLab");
8873
9030
  var GITLAB_TOOLS = [
8874
9031
  "gitlab_list_projects",
8875
9032
  "gitlab_list_own_projects",
@@ -8916,15 +9073,15 @@ function gitlabIntegration(config = {}) {
8916
9073
  tools: [...GITLAB_TOOLS],
8917
9074
  oauth,
8918
9075
  async onInit(_client) {
8919
- logger84.debug("GitLab integration initialized");
9076
+ logger87.debug("GitLab integration initialized");
8920
9077
  },
8921
9078
  async onAfterConnect(_client) {
8922
- logger84.debug("GitLab integration connected");
9079
+ logger87.debug("GitLab integration connected");
8923
9080
  }
8924
9081
  };
8925
9082
  }
8926
9083
  // src/integrations/gmeet.ts
8927
- var logger85 = createLogger("Google Meet");
9084
+ var logger88 = createLogger("Google Meet");
8928
9085
  var GMEET_TOOLS = [
8929
9086
  "gmeet_add_meet_to_event",
8930
9087
  "gmeet_create_meeting",
@@ -8952,15 +9109,15 @@ function gmeetIntegration(config = {}) {
8952
9109
  tools: [...GMEET_TOOLS],
8953
9110
  oauth,
8954
9111
  async onInit(_client) {
8955
- logger85.debug("Google Meet integration initialized");
9112
+ logger88.debug("Google Meet integration initialized");
8956
9113
  },
8957
9114
  async onAfterConnect(_client) {
8958
- logger85.debug("Google Meet integration connected");
9115
+ logger88.debug("Google Meet integration connected");
8959
9116
  }
8960
9117
  };
8961
9118
  }
8962
9119
  // src/integrations/monday.ts
8963
- var logger86 = createLogger("Monday");
9120
+ var logger89 = createLogger("Monday");
8964
9121
  var MONDAY_TOOLS = [
8965
9122
  "monday_me",
8966
9123
  "monday_list_workspaces",
@@ -8997,10 +9154,10 @@ function mondayIntegration(config = {}) {
8997
9154
  tools: [...MONDAY_TOOLS],
8998
9155
  oauth,
8999
9156
  async onInit(_client) {
9000
- logger86.debug("Monday.com integration initialized");
9157
+ logger89.debug("Monday.com integration initialized");
9001
9158
  },
9002
9159
  async onAfterConnect(_client) {
9003
- logger86.debug("Monday.com integration connected");
9160
+ logger89.debug("Monday.com integration connected");
9004
9161
  }
9005
9162
  };
9006
9163
  }
@@ -9040,7 +9197,7 @@ function planetscaleIntegration(config = {}) {
9040
9197
  };
9041
9198
  }
9042
9199
  // src/integrations/powerpoint.ts
9043
- var logger87 = createLogger("PowerPoint");
9200
+ var logger90 = createLogger("PowerPoint");
9044
9201
  var POWERPOINT_TOOLS = [
9045
9202
  "powerpoint_copy",
9046
9203
  "powerpoint_create",
@@ -9067,10 +9224,10 @@ function powerpointIntegration(config = {}) {
9067
9224
  tools: [...POWERPOINT_TOOLS],
9068
9225
  oauth,
9069
9226
  async onInit(_client) {
9070
- logger87.debug("PowerPoint integration initialized");
9227
+ logger90.debug("PowerPoint integration initialized");
9071
9228
  },
9072
9229
  async onAfterConnect(_client) {
9073
- logger87.debug("PowerPoint integration connected");
9230
+ logger90.debug("PowerPoint integration connected");
9074
9231
  }
9075
9232
  };
9076
9233
  }
@@ -9105,7 +9262,7 @@ function redditIntegration(config = {}) {
9105
9262
  };
9106
9263
  }
9107
9264
  // src/integrations/resend.ts
9108
- var logger88 = createLogger("Resend");
9265
+ var logger91 = createLogger("Resend");
9109
9266
  var RESEND_TOOLS = [
9110
9267
  "resend_list_domains",
9111
9268
  "resend_get_domain",
@@ -9130,15 +9287,15 @@ function resendIntegration(options = {}) {
9130
9287
  return { Authorization: `Bearer ${apiKey}` };
9131
9288
  },
9132
9289
  async onInit(_client) {
9133
- logger88.debug("Resend integration initialized");
9290
+ logger91.debug("Resend integration initialized");
9134
9291
  },
9135
9292
  async onAfterConnect(_client) {
9136
- logger88.debug("Resend integration connected");
9293
+ logger91.debug("Resend integration connected");
9137
9294
  }
9138
9295
  };
9139
9296
  }
9140
9297
  // src/integrations/word.ts
9141
- var logger89 = createLogger("Word");
9298
+ var logger92 = createLogger("Word");
9142
9299
  var WORD_TOOLS = [
9143
9300
  "word_copy",
9144
9301
  "word_create",
@@ -9165,15 +9322,15 @@ function wordIntegration(config = {}) {
9165
9322
  tools: [...WORD_TOOLS],
9166
9323
  oauth,
9167
9324
  async onInit(_client) {
9168
- logger89.debug("Word integration initialized");
9325
+ logger92.debug("Word integration initialized");
9169
9326
  },
9170
9327
  async onAfterConnect(_client) {
9171
- logger89.debug("Word integration connected");
9328
+ logger92.debug("Word integration connected");
9172
9329
  }
9173
9330
  };
9174
9331
  }
9175
9332
  // src/integrations/zapier.ts
9176
- var logger90 = createLogger("Zapier");
9333
+ var logger93 = createLogger("Zapier");
9177
9334
  var ZAPIER_TOOLS = [
9178
9335
  "zapier_get_profile",
9179
9336
  "zapier_list_zaps",
@@ -9205,15 +9362,15 @@ function zapierIntegration(config = {}) {
9205
9362
  tools: [...ZAPIER_TOOLS],
9206
9363
  oauth,
9207
9364
  async onInit(_client) {
9208
- logger90.debug("Zapier integration initialized");
9365
+ logger93.debug("Zapier integration initialized");
9209
9366
  },
9210
9367
  async onAfterConnect(_client) {
9211
- logger90.debug("Zapier integration connected");
9368
+ logger93.debug("Zapier integration connected");
9212
9369
  }
9213
9370
  };
9214
9371
  }
9215
9372
  // src/integrations/zoom.ts
9216
- var logger91 = createLogger("Zoom");
9373
+ var logger94 = createLogger("Zoom");
9217
9374
  var ZOOM_TOOLS = [
9218
9375
  "zoom_get_user",
9219
9376
  "zoom_list_meetings",
@@ -9239,10 +9396,10 @@ function zoomIntegration(config = {}) {
9239
9396
  tools: [...ZOOM_TOOLS],
9240
9397
  oauth,
9241
9398
  async onInit(_client) {
9242
- logger91.debug("Zoom integration initialized");
9399
+ logger94.debug("Zoom integration initialized");
9243
9400
  },
9244
9401
  async onAfterConnect(_client) {
9245
- logger91.debug("Zoom integration connected");
9402
+ logger94.debug("Zoom integration connected");
9246
9403
  }
9247
9404
  };
9248
9405
  }
@@ -9260,7 +9417,7 @@ function validateStepLimit(stepIndex, maxSteps) {
9260
9417
  return { valid: true };
9261
9418
  }
9262
9419
  // src/triggers/webhooks.ts
9263
- var logger92 = createLogger("Webhooks", "server");
9420
+ var logger95 = createLogger("Webhooks", "server");
9264
9421
  async function signPayload(payload, secret) {
9265
9422
  const encoder = new TextEncoder;
9266
9423
  const data = encoder.encode(JSON.stringify(payload));
@@ -9286,7 +9443,7 @@ async function deliverWebhook(webhook, payload, timeoutMs) {
9286
9443
  signal: controller.signal
9287
9444
  });
9288
9445
  if (!response.ok) {
9289
- logger92.warn(`Webhook delivery to ${webhook.url} returned ${response.status}`);
9446
+ logger95.warn(`Webhook delivery to ${webhook.url} returned ${response.status}`);
9290
9447
  }
9291
9448
  } finally {
9292
9449
  clearTimeout(timeout);
@@ -9299,7 +9456,7 @@ async function deliverWebhooks(webhooks, payload, timeoutMs) {
9299
9456
  for (let i = 0;i < results.length; i++) {
9300
9457
  const result = results[i];
9301
9458
  if (result.status === "rejected") {
9302
- logger92.warn(`Webhook delivery to ${webhooks[i].url} failed:`, result.reason);
9459
+ logger95.warn(`Webhook delivery to ${webhooks[i].url} failed:`, result.reason);
9303
9460
  }
9304
9461
  }
9305
9462
  }
@@ -9343,6 +9500,7 @@ var client = createMCPClient({
9343
9500
  notionIntegration(),
9344
9501
  slackIntegration(),
9345
9502
  discordIntegration(),
9503
+ boxIntegration(),
9346
9504
  linearIntegration(),
9347
9505
  vercelIntegration(),
9348
9506
  zendeskIntegration(),
@@ -9350,6 +9508,7 @@ var client = createMCPClient({
9350
9508
  gcalIntegration(),
9351
9509
  gmeetIntegration(),
9352
9510
  gtasksIntegration(),
9511
+ gkeepIntegration(),
9353
9512
  gcontactsIntegration(),
9354
9513
  outlookIntegration(),
9355
9514
  teamsIntegration(),
@@ -9423,6 +9582,7 @@ export {
9423
9582
  tldrawIntegration,
9424
9583
  tiktokIntegration,
9425
9584
  threadsIntegration,
9585
+ telegramIntegration,
9426
9586
  teamsIntegration,
9427
9587
  supabaseIntegration,
9428
9588
  stripeIntegration,
@@ -9473,6 +9633,7 @@ export {
9473
9633
  granolaIntegration,
9474
9634
  gmeetIntegration,
9475
9635
  gmailIntegration,
9636
+ gkeepIntegration,
9476
9637
  gitlabIntegration,
9477
9638
  githubIntegration,
9478
9639
  genericOAuthIntegration,
@@ -9512,6 +9673,7 @@ export {
9512
9673
  canvaIntegration,
9513
9674
  calcomIntegration,
9514
9675
  buildPhantomBrowseDeeplink,
9676
+ boxIntegration,
9515
9677
  binanceIntegration,
9516
9678
  betterstackIntegration,
9517
9679
  awsIntegration,