integrate-sdk 0.8.48-dev.0 → 0.8.52-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.
Files changed (40) hide show
  1. package/dist/adapters/auto-routes.js +52 -1
  2. package/dist/adapters/index.js +52 -1
  3. package/dist/adapters/nextjs.js +52 -1
  4. package/dist/adapters/node.js +52 -1
  5. package/dist/adapters/svelte-kit.js +52 -1
  6. package/dist/adapters/tanstack-start.js +52 -1
  7. package/dist/index.js +52 -1
  8. package/dist/oauth.js +52 -1
  9. package/dist/server.js +52 -1
  10. package/dist/src/client.d.ts.map +1 -1
  11. package/dist/src/integrations/airtable.d.ts.map +1 -1
  12. package/dist/src/integrations/calcom.d.ts.map +1 -1
  13. package/dist/src/integrations/cursor.d.ts.map +1 -1
  14. package/dist/src/integrations/figma.d.ts.map +1 -1
  15. package/dist/src/integrations/gcal.d.ts.map +1 -1
  16. package/dist/src/integrations/generic.d.ts +4 -0
  17. package/dist/src/integrations/generic.d.ts.map +1 -1
  18. package/dist/src/integrations/github.d.ts.map +1 -1
  19. package/dist/src/integrations/gmail.d.ts.map +1 -1
  20. package/dist/src/integrations/gworkspace.d.ts.map +1 -1
  21. package/dist/src/integrations/hubspot.d.ts.map +1 -1
  22. package/dist/src/integrations/intercom.d.ts.map +1 -1
  23. package/dist/src/integrations/linear.d.ts.map +1 -1
  24. package/dist/src/integrations/notion.d.ts.map +1 -1
  25. package/dist/src/integrations/onedrive.d.ts.map +1 -1
  26. package/dist/src/integrations/outlook.d.ts.map +1 -1
  27. package/dist/src/integrations/polar.d.ts.map +1 -1
  28. package/dist/src/integrations/ramp.d.ts.map +1 -1
  29. package/dist/src/integrations/server-client.d.ts +2 -0
  30. package/dist/src/integrations/server-client.d.ts.map +1 -1
  31. package/dist/src/integrations/slack.d.ts.map +1 -1
  32. package/dist/src/integrations/stripe.d.ts.map +1 -1
  33. package/dist/src/integrations/todoist.d.ts.map +1 -1
  34. package/dist/src/integrations/types.d.ts +4 -0
  35. package/dist/src/integrations/types.d.ts.map +1 -1
  36. package/dist/src/integrations/vercel.d.ts.map +1 -1
  37. package/dist/src/integrations/whatsapp.d.ts.map +1 -1
  38. package/dist/src/integrations/youtube.d.ts.map +1 -1
  39. package/dist/src/integrations/zendesk.d.ts.map +1 -1
  40. package/package.json +1 -1
@@ -1896,6 +1896,7 @@ class MCPClientBase {
1896
1896
  return {
1897
1897
  id: integration.id,
1898
1898
  name: integration.name || integration.id,
1899
+ logoUrl: integration.logoUrl,
1899
1900
  tools: integration.tools,
1900
1901
  hasOAuth: !!integration.oauth,
1901
1902
  scopes: integration.oauth?.scopes,
@@ -1907,6 +1908,7 @@ class MCPClientBase {
1907
1908
  return {
1908
1909
  id: integration.id,
1909
1910
  name: integration.name || integration.id,
1911
+ logoUrl: integration.logoUrl,
1910
1912
  tools: integration.tools,
1911
1913
  hasOAuth: !!integration.oauth,
1912
1914
  scopes: integration.oauth?.scopes,
@@ -1923,6 +1925,7 @@ class MCPClientBase {
1923
1925
  integrations: configuredIntegrations.map((integration) => ({
1924
1926
  id: integration.id,
1925
1927
  name: integration.name || integration.id,
1928
+ logoUrl: integration.logoUrl,
1926
1929
  tools: integration.tools,
1927
1930
  hasOAuth: !!integration.oauth,
1928
1931
  scopes: integration.oauth?.scopes,
@@ -2472,6 +2475,8 @@ function githubIntegration(config = {}) {
2472
2475
  };
2473
2476
  return {
2474
2477
  id: "github",
2478
+ name: "GitHub",
2479
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/github.png",
2475
2480
  tools: [...GITHUB_TOOLS],
2476
2481
  oauth,
2477
2482
  async onInit(_client) {
@@ -2525,6 +2530,8 @@ function gmailIntegration(config = {}) {
2525
2530
  };
2526
2531
  return {
2527
2532
  id: "gmail",
2533
+ name: "Gmail",
2534
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/gmail.jpeg",
2528
2535
  tools: [...GMAIL_TOOLS],
2529
2536
  oauth,
2530
2537
  async onInit(_client) {
@@ -2564,6 +2571,8 @@ function notionIntegration(config = {}) {
2564
2571
  };
2565
2572
  return {
2566
2573
  id: "notion",
2574
+ name: "Notion",
2575
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/notion.jpeg",
2567
2576
  tools: [...NOTION_TOOLS],
2568
2577
  oauth,
2569
2578
  async onInit(_client) {
@@ -2598,6 +2607,8 @@ function slackIntegration(config = {}) {
2598
2607
  };
2599
2608
  return {
2600
2609
  id: "slack",
2610
+ name: "Slack",
2611
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/slack.jpeg",
2601
2612
  tools: [...SLACK_TOOLS],
2602
2613
  oauth,
2603
2614
  async onInit(_client) {
@@ -2639,6 +2650,8 @@ function linearIntegration(config = {}) {
2639
2650
  };
2640
2651
  return {
2641
2652
  id: "linear",
2653
+ name: "Linear",
2654
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/linear.jpeg",
2642
2655
  tools: [...LINEAR_TOOLS],
2643
2656
  oauth,
2644
2657
  async onInit(_client) {
@@ -2680,6 +2693,8 @@ function vercelIntegration(config = {}) {
2680
2693
  };
2681
2694
  return {
2682
2695
  id: "vercel",
2696
+ name: "Vercel",
2697
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/vercel.png",
2683
2698
  tools: [...VERCEL_TOOLS],
2684
2699
  oauth,
2685
2700
  async onInit(_client) {
@@ -2722,6 +2737,8 @@ function zendeskIntegration(config = {}) {
2722
2737
  };
2723
2738
  return {
2724
2739
  id: "zendesk",
2740
+ name: "Zendesk",
2741
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zendesk.jpeg",
2725
2742
  tools: [...ZENDESK_TOOLS],
2726
2743
  oauth,
2727
2744
  async onInit(_client) {
@@ -2763,6 +2780,8 @@ function stripeIntegration(config = {}) {
2763
2780
  };
2764
2781
  return {
2765
2782
  id: "stripe",
2783
+ name: "Stripe",
2784
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/stripe.jpeg",
2766
2785
  tools: [...STRIPE_TOOLS],
2767
2786
  oauth,
2768
2787
  async onInit(_client) {
@@ -2804,6 +2823,8 @@ function gcalIntegration(config = {}) {
2804
2823
  };
2805
2824
  return {
2806
2825
  id: "gcal",
2826
+ name: "Google Calendar",
2827
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/google_calendar.webp",
2807
2828
  tools: [...GCAL_TOOLS],
2808
2829
  oauth,
2809
2830
  async onInit(_client) {
@@ -2845,6 +2866,8 @@ function outlookIntegration(config = {}) {
2845
2866
  };
2846
2867
  return {
2847
2868
  id: "outlook",
2869
+ name: "Outlook",
2870
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/outlook.png",
2848
2871
  tools: [...OUTLOOK_TOOLS],
2849
2872
  oauth,
2850
2873
  async onInit(_client) {
@@ -2886,6 +2909,8 @@ function airtableIntegration(config = {}) {
2886
2909
  };
2887
2910
  return {
2888
2911
  id: "airtable",
2912
+ name: "Airtable",
2913
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/airtable.jpeg",
2889
2914
  tools: [...AIRTABLE_TOOLS],
2890
2915
  oauth,
2891
2916
  async onInit(_client) {
@@ -2927,6 +2952,8 @@ function todoistIntegration(config = {}) {
2927
2952
  };
2928
2953
  return {
2929
2954
  id: "todoist",
2955
+ name: "Todoist",
2956
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/todoist.png",
2930
2957
  tools: [...TODOIST_TOOLS],
2931
2958
  oauth,
2932
2959
  async onInit(_client) {
@@ -2969,6 +2996,8 @@ function whatsappIntegration(config = {}) {
2969
2996
  };
2970
2997
  return {
2971
2998
  id: "whatsapp",
2999
+ name: "WhatsApp Business",
3000
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/whatsapp.png",
2972
3001
  tools: [...WHATSAPP_TOOLS],
2973
3002
  oauth,
2974
3003
  async onInit(_client) {
@@ -3010,6 +3039,8 @@ function calcomIntegration(config = {}) {
3010
3039
  };
3011
3040
  return {
3012
3041
  id: "calcom",
3042
+ name: "Cal.com",
3043
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/calcom.jpeg",
3013
3044
  tools: [...CALCOM_TOOLS],
3014
3045
  oauth,
3015
3046
  async onInit(_client) {
@@ -3052,6 +3083,8 @@ function rampIntegration(config = {}) {
3052
3083
  };
3053
3084
  return {
3054
3085
  id: "ramp",
3086
+ name: "Ramp",
3087
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/ramp.jpeg",
3055
3088
  tools: [...RAMP_TOOLS],
3056
3089
  oauth,
3057
3090
  async onInit(_client) {
@@ -3093,6 +3126,8 @@ function onedriveIntegration(config = {}) {
3093
3126
  };
3094
3127
  return {
3095
3128
  id: "onedrive",
3129
+ name: "OneDrive",
3130
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/onedrive.webp",
3096
3131
  tools: [...ONEDRIVE_TOOLS],
3097
3132
  oauth,
3098
3133
  async onInit(_client) {
@@ -3142,6 +3177,8 @@ function gworkspaceIntegration(config = {}) {
3142
3177
  };
3143
3178
  return {
3144
3179
  id: "gworkspace",
3180
+ name: "Google Workspace",
3181
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/google_workspace.jpeg",
3145
3182
  tools: [...GWORKSPACE_TOOLS],
3146
3183
  oauth,
3147
3184
  async onInit(_client) {
@@ -3187,6 +3224,8 @@ function polarIntegration(config = {}) {
3187
3224
  };
3188
3225
  return {
3189
3226
  id: "polar",
3227
+ name: "Polar",
3228
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/polar.png",
3190
3229
  tools: [...POLAR_TOOLS],
3191
3230
  oauth,
3192
3231
  async onInit(_client) {
@@ -3228,6 +3267,8 @@ function figmaIntegration(config = {}) {
3228
3267
  };
3229
3268
  return {
3230
3269
  id: "figma",
3270
+ name: "Figma",
3271
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/figma.png",
3231
3272
  tools: [...FIGMA_TOOLS],
3232
3273
  oauth,
3233
3274
  async onInit(_client) {
@@ -3269,6 +3310,8 @@ function intercomIntegration(config = {}) {
3269
3310
  };
3270
3311
  return {
3271
3312
  id: "intercom",
3313
+ name: "Intercom",
3314
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/intercom.png",
3272
3315
  tools: [...INTERCOM_TOOLS],
3273
3316
  oauth,
3274
3317
  async onInit(_client) {
@@ -3318,6 +3361,8 @@ function hubspotIntegration(config = {}) {
3318
3361
  };
3319
3362
  return {
3320
3363
  id: "hubspot",
3364
+ name: "HubSpot",
3365
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/hubspot.jpeg",
3321
3366
  tools: [...HUBSPOT_TOOLS],
3322
3367
  oauth,
3323
3368
  async onInit(_client) {
@@ -3362,6 +3407,8 @@ function youtubeIntegration(config = {}) {
3362
3407
  };
3363
3408
  return {
3364
3409
  id: "youtube",
3410
+ name: "YouTube",
3411
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/youtube.jpeg",
3365
3412
  tools: [...YOUTUBE_TOOLS],
3366
3413
  oauth,
3367
3414
  async onInit(_client) {
@@ -3393,6 +3440,8 @@ var init_youtube = __esm(() => {
3393
3440
  function cursorIntegration(_config = {}) {
3394
3441
  return {
3395
3442
  id: "cursor",
3443
+ name: "Cursor",
3444
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/cursor.jpeg",
3396
3445
  tools: [...CURSOR_TOOLS],
3397
3446
  async onInit(_client) {
3398
3447
  logger28.debug("Cursor integration initialized");
@@ -3433,6 +3482,8 @@ function genericOAuthIntegration(config) {
3433
3482
  };
3434
3483
  return {
3435
3484
  id: config.id,
3485
+ name: config.name,
3486
+ logoUrl: config.logoUrl,
3436
3487
  tools: config.tools,
3437
3488
  oauth,
3438
3489
  onInit: config.onInit,
@@ -9253,7 +9304,6 @@ var init_zodToJsonSchema = __esm(() => {
9253
9304
 
9254
9305
  // ../../node_modules/zod-to-json-schema/dist/esm/index.js
9255
9306
  var init_esm = __esm(() => {
9256
- init_zodToJsonSchema();
9257
9307
  init_Options();
9258
9308
  init_Refs();
9259
9309
  init_parseDef();
@@ -9285,6 +9335,7 @@ var init_esm = __esm(() => {
9285
9335
  init_unknown();
9286
9336
  init_selectParser();
9287
9337
  init_zodToJsonSchema();
9338
+ init_zodToJsonSchema();
9288
9339
  });
9289
9340
 
9290
9341
  // ../ai/openai.ts
@@ -1896,6 +1896,7 @@ class MCPClientBase {
1896
1896
  return {
1897
1897
  id: integration.id,
1898
1898
  name: integration.name || integration.id,
1899
+ logoUrl: integration.logoUrl,
1899
1900
  tools: integration.tools,
1900
1901
  hasOAuth: !!integration.oauth,
1901
1902
  scopes: integration.oauth?.scopes,
@@ -1907,6 +1908,7 @@ class MCPClientBase {
1907
1908
  return {
1908
1909
  id: integration.id,
1909
1910
  name: integration.name || integration.id,
1911
+ logoUrl: integration.logoUrl,
1910
1912
  tools: integration.tools,
1911
1913
  hasOAuth: !!integration.oauth,
1912
1914
  scopes: integration.oauth?.scopes,
@@ -1923,6 +1925,7 @@ class MCPClientBase {
1923
1925
  integrations: configuredIntegrations.map((integration) => ({
1924
1926
  id: integration.id,
1925
1927
  name: integration.name || integration.id,
1928
+ logoUrl: integration.logoUrl,
1926
1929
  tools: integration.tools,
1927
1930
  hasOAuth: !!integration.oauth,
1928
1931
  scopes: integration.oauth?.scopes,
@@ -2472,6 +2475,8 @@ function githubIntegration(config = {}) {
2472
2475
  };
2473
2476
  return {
2474
2477
  id: "github",
2478
+ name: "GitHub",
2479
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/github.png",
2475
2480
  tools: [...GITHUB_TOOLS],
2476
2481
  oauth,
2477
2482
  async onInit(_client) {
@@ -2525,6 +2530,8 @@ function gmailIntegration(config = {}) {
2525
2530
  };
2526
2531
  return {
2527
2532
  id: "gmail",
2533
+ name: "Gmail",
2534
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/gmail.jpeg",
2528
2535
  tools: [...GMAIL_TOOLS],
2529
2536
  oauth,
2530
2537
  async onInit(_client) {
@@ -2564,6 +2571,8 @@ function notionIntegration(config = {}) {
2564
2571
  };
2565
2572
  return {
2566
2573
  id: "notion",
2574
+ name: "Notion",
2575
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/notion.jpeg",
2567
2576
  tools: [...NOTION_TOOLS],
2568
2577
  oauth,
2569
2578
  async onInit(_client) {
@@ -2598,6 +2607,8 @@ function slackIntegration(config = {}) {
2598
2607
  };
2599
2608
  return {
2600
2609
  id: "slack",
2610
+ name: "Slack",
2611
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/slack.jpeg",
2601
2612
  tools: [...SLACK_TOOLS],
2602
2613
  oauth,
2603
2614
  async onInit(_client) {
@@ -2639,6 +2650,8 @@ function linearIntegration(config = {}) {
2639
2650
  };
2640
2651
  return {
2641
2652
  id: "linear",
2653
+ name: "Linear",
2654
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/linear.jpeg",
2642
2655
  tools: [...LINEAR_TOOLS],
2643
2656
  oauth,
2644
2657
  async onInit(_client) {
@@ -2680,6 +2693,8 @@ function vercelIntegration(config = {}) {
2680
2693
  };
2681
2694
  return {
2682
2695
  id: "vercel",
2696
+ name: "Vercel",
2697
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/vercel.png",
2683
2698
  tools: [...VERCEL_TOOLS],
2684
2699
  oauth,
2685
2700
  async onInit(_client) {
@@ -2722,6 +2737,8 @@ function zendeskIntegration(config = {}) {
2722
2737
  };
2723
2738
  return {
2724
2739
  id: "zendesk",
2740
+ name: "Zendesk",
2741
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/zendesk.jpeg",
2725
2742
  tools: [...ZENDESK_TOOLS],
2726
2743
  oauth,
2727
2744
  async onInit(_client) {
@@ -2763,6 +2780,8 @@ function stripeIntegration(config = {}) {
2763
2780
  };
2764
2781
  return {
2765
2782
  id: "stripe",
2783
+ name: "Stripe",
2784
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/stripe.jpeg",
2766
2785
  tools: [...STRIPE_TOOLS],
2767
2786
  oauth,
2768
2787
  async onInit(_client) {
@@ -2804,6 +2823,8 @@ function gcalIntegration(config = {}) {
2804
2823
  };
2805
2824
  return {
2806
2825
  id: "gcal",
2826
+ name: "Google Calendar",
2827
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/google_calendar.webp",
2807
2828
  tools: [...GCAL_TOOLS],
2808
2829
  oauth,
2809
2830
  async onInit(_client) {
@@ -2845,6 +2866,8 @@ function outlookIntegration(config = {}) {
2845
2866
  };
2846
2867
  return {
2847
2868
  id: "outlook",
2869
+ name: "Outlook",
2870
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/outlook.png",
2848
2871
  tools: [...OUTLOOK_TOOLS],
2849
2872
  oauth,
2850
2873
  async onInit(_client) {
@@ -2886,6 +2909,8 @@ function airtableIntegration(config = {}) {
2886
2909
  };
2887
2910
  return {
2888
2911
  id: "airtable",
2912
+ name: "Airtable",
2913
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/airtable.jpeg",
2889
2914
  tools: [...AIRTABLE_TOOLS],
2890
2915
  oauth,
2891
2916
  async onInit(_client) {
@@ -2927,6 +2952,8 @@ function todoistIntegration(config = {}) {
2927
2952
  };
2928
2953
  return {
2929
2954
  id: "todoist",
2955
+ name: "Todoist",
2956
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/todoist.png",
2930
2957
  tools: [...TODOIST_TOOLS],
2931
2958
  oauth,
2932
2959
  async onInit(_client) {
@@ -2969,6 +2996,8 @@ function whatsappIntegration(config = {}) {
2969
2996
  };
2970
2997
  return {
2971
2998
  id: "whatsapp",
2999
+ name: "WhatsApp Business",
3000
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/whatsapp.png",
2972
3001
  tools: [...WHATSAPP_TOOLS],
2973
3002
  oauth,
2974
3003
  async onInit(_client) {
@@ -3010,6 +3039,8 @@ function calcomIntegration(config = {}) {
3010
3039
  };
3011
3040
  return {
3012
3041
  id: "calcom",
3042
+ name: "Cal.com",
3043
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/calcom.jpeg",
3013
3044
  tools: [...CALCOM_TOOLS],
3014
3045
  oauth,
3015
3046
  async onInit(_client) {
@@ -3052,6 +3083,8 @@ function rampIntegration(config = {}) {
3052
3083
  };
3053
3084
  return {
3054
3085
  id: "ramp",
3086
+ name: "Ramp",
3087
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/ramp.jpeg",
3055
3088
  tools: [...RAMP_TOOLS],
3056
3089
  oauth,
3057
3090
  async onInit(_client) {
@@ -3093,6 +3126,8 @@ function onedriveIntegration(config = {}) {
3093
3126
  };
3094
3127
  return {
3095
3128
  id: "onedrive",
3129
+ name: "OneDrive",
3130
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/onedrive.webp",
3096
3131
  tools: [...ONEDRIVE_TOOLS],
3097
3132
  oauth,
3098
3133
  async onInit(_client) {
@@ -3142,6 +3177,8 @@ function gworkspaceIntegration(config = {}) {
3142
3177
  };
3143
3178
  return {
3144
3179
  id: "gworkspace",
3180
+ name: "Google Workspace",
3181
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/google_workspace.jpeg",
3145
3182
  tools: [...GWORKSPACE_TOOLS],
3146
3183
  oauth,
3147
3184
  async onInit(_client) {
@@ -3187,6 +3224,8 @@ function polarIntegration(config = {}) {
3187
3224
  };
3188
3225
  return {
3189
3226
  id: "polar",
3227
+ name: "Polar",
3228
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/polar.png",
3190
3229
  tools: [...POLAR_TOOLS],
3191
3230
  oauth,
3192
3231
  async onInit(_client) {
@@ -3228,6 +3267,8 @@ function figmaIntegration(config = {}) {
3228
3267
  };
3229
3268
  return {
3230
3269
  id: "figma",
3270
+ name: "Figma",
3271
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/figma.png",
3231
3272
  tools: [...FIGMA_TOOLS],
3232
3273
  oauth,
3233
3274
  async onInit(_client) {
@@ -3269,6 +3310,8 @@ function intercomIntegration(config = {}) {
3269
3310
  };
3270
3311
  return {
3271
3312
  id: "intercom",
3313
+ name: "Intercom",
3314
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/intercom.png",
3272
3315
  tools: [...INTERCOM_TOOLS],
3273
3316
  oauth,
3274
3317
  async onInit(_client) {
@@ -3318,6 +3361,8 @@ function hubspotIntegration(config = {}) {
3318
3361
  };
3319
3362
  return {
3320
3363
  id: "hubspot",
3364
+ name: "HubSpot",
3365
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/hubspot.jpeg",
3321
3366
  tools: [...HUBSPOT_TOOLS],
3322
3367
  oauth,
3323
3368
  async onInit(_client) {
@@ -3362,6 +3407,8 @@ function youtubeIntegration(config = {}) {
3362
3407
  };
3363
3408
  return {
3364
3409
  id: "youtube",
3410
+ name: "YouTube",
3411
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/youtube.jpeg",
3365
3412
  tools: [...YOUTUBE_TOOLS],
3366
3413
  oauth,
3367
3414
  async onInit(_client) {
@@ -3393,6 +3440,8 @@ var init_youtube = __esm(() => {
3393
3440
  function cursorIntegration(_config = {}) {
3394
3441
  return {
3395
3442
  id: "cursor",
3443
+ name: "Cursor",
3444
+ logoUrl: "https://wdvtnli2jn3texa6.public.blob.vercel-storage.com/cursor.jpeg",
3396
3445
  tools: [...CURSOR_TOOLS],
3397
3446
  async onInit(_client) {
3398
3447
  logger28.debug("Cursor integration initialized");
@@ -3433,6 +3482,8 @@ function genericOAuthIntegration(config) {
3433
3482
  };
3434
3483
  return {
3435
3484
  id: config.id,
3485
+ name: config.name,
3486
+ logoUrl: config.logoUrl,
3436
3487
  tools: config.tools,
3437
3488
  oauth,
3438
3489
  onInit: config.onInit,
@@ -9253,7 +9304,6 @@ var init_zodToJsonSchema = __esm(() => {
9253
9304
 
9254
9305
  // ../../node_modules/zod-to-json-schema/dist/esm/index.js
9255
9306
  var init_esm = __esm(() => {
9256
- init_zodToJsonSchema();
9257
9307
  init_Options();
9258
9308
  init_Refs();
9259
9309
  init_parseDef();
@@ -9285,6 +9335,7 @@ var init_esm = __esm(() => {
9285
9335
  init_unknown();
9286
9336
  init_selectParser();
9287
9337
  init_zodToJsonSchema();
9338
+ init_zodToJsonSchema();
9288
9339
  });
9289
9340
 
9290
9341
  // ../ai/openai.ts