integrate-sdk 0.8.48-dev.0 → 0.8.50-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
package/dist/index.js CHANGED
@@ -1924,6 +1924,7 @@ class MCPClientBase {
1924
1924
  return {
1925
1925
  id: integration.id,
1926
1926
  name: integration.name || integration.id,
1927
+ logoUrl: integration.logoUrl,
1927
1928
  tools: integration.tools,
1928
1929
  hasOAuth: !!integration.oauth,
1929
1930
  scopes: integration.oauth?.scopes,
@@ -1935,6 +1936,7 @@ class MCPClientBase {
1935
1936
  return {
1936
1937
  id: integration.id,
1937
1938
  name: integration.name || integration.id,
1939
+ logoUrl: integration.logoUrl,
1938
1940
  tools: integration.tools,
1939
1941
  hasOAuth: !!integration.oauth,
1940
1942
  scopes: integration.oauth?.scopes,
@@ -1951,6 +1953,7 @@ class MCPClientBase {
1951
1953
  integrations: configuredIntegrations.map((integration) => ({
1952
1954
  id: integration.id,
1953
1955
  name: integration.name || integration.id,
1956
+ logoUrl: integration.logoUrl,
1954
1957
  tools: integration.tools,
1955
1958
  hasOAuth: !!integration.oauth,
1956
1959
  scopes: integration.oauth?.scopes,
@@ -2859,6 +2862,8 @@ function githubIntegration(config = {}) {
2859
2862
  };
2860
2863
  return {
2861
2864
  id: "github",
2865
+ name: "GitHub",
2866
+ logoUrl: "https://cdn.simpleicons.org/github",
2862
2867
  tools: [...GITHUB_TOOLS],
2863
2868
  oauth,
2864
2869
  async onInit(_client) {
@@ -2912,6 +2917,8 @@ function gmailIntegration(config = {}) {
2912
2917
  };
2913
2918
  return {
2914
2919
  id: "gmail",
2920
+ name: "Gmail",
2921
+ logoUrl: "https://cdn.simpleicons.org/gmail",
2915
2922
  tools: [...GMAIL_TOOLS],
2916
2923
  oauth,
2917
2924
  async onInit(_client) {
@@ -2951,6 +2958,8 @@ function notionIntegration(config = {}) {
2951
2958
  };
2952
2959
  return {
2953
2960
  id: "notion",
2961
+ name: "Notion",
2962
+ logoUrl: "https://cdn.simpleicons.org/notion",
2954
2963
  tools: [...NOTION_TOOLS],
2955
2964
  oauth,
2956
2965
  async onInit(_client) {
@@ -2985,6 +2994,8 @@ function slackIntegration(config = {}) {
2985
2994
  };
2986
2995
  return {
2987
2996
  id: "slack",
2997
+ name: "Slack",
2998
+ logoUrl: "https://cdn.simpleicons.org/slack",
2988
2999
  tools: [...SLACK_TOOLS],
2989
3000
  oauth,
2990
3001
  async onInit(_client) {
@@ -3026,6 +3037,8 @@ function linearIntegration(config = {}) {
3026
3037
  };
3027
3038
  return {
3028
3039
  id: "linear",
3040
+ name: "Linear",
3041
+ logoUrl: "https://cdn.simpleicons.org/linear",
3029
3042
  tools: [...LINEAR_TOOLS],
3030
3043
  oauth,
3031
3044
  async onInit(_client) {
@@ -3067,6 +3080,8 @@ function vercelIntegration(config = {}) {
3067
3080
  };
3068
3081
  return {
3069
3082
  id: "vercel",
3083
+ name: "Vercel",
3084
+ logoUrl: "https://cdn.simpleicons.org/vercel",
3070
3085
  tools: [...VERCEL_TOOLS],
3071
3086
  oauth,
3072
3087
  async onInit(_client) {
@@ -3109,6 +3124,8 @@ function zendeskIntegration(config = {}) {
3109
3124
  };
3110
3125
  return {
3111
3126
  id: "zendesk",
3127
+ name: "Zendesk",
3128
+ logoUrl: "https://cdn.simpleicons.org/zendesk",
3112
3129
  tools: [...ZENDESK_TOOLS],
3113
3130
  oauth,
3114
3131
  async onInit(_client) {
@@ -3150,6 +3167,8 @@ function stripeIntegration(config = {}) {
3150
3167
  };
3151
3168
  return {
3152
3169
  id: "stripe",
3170
+ name: "Stripe",
3171
+ logoUrl: "https://cdn.simpleicons.org/stripe",
3153
3172
  tools: [...STRIPE_TOOLS],
3154
3173
  oauth,
3155
3174
  async onInit(_client) {
@@ -3191,6 +3210,8 @@ function gcalIntegration(config = {}) {
3191
3210
  };
3192
3211
  return {
3193
3212
  id: "gcal",
3213
+ name: "Google Calendar",
3214
+ logoUrl: "https://cdn.simpleicons.org/googlecalendar",
3194
3215
  tools: [...GCAL_TOOLS],
3195
3216
  oauth,
3196
3217
  async onInit(_client) {
@@ -3232,6 +3253,8 @@ function outlookIntegration(config = {}) {
3232
3253
  };
3233
3254
  return {
3234
3255
  id: "outlook",
3256
+ name: "Outlook",
3257
+ logoUrl: "https://cdn.simpleicons.org/microsoftoutlook",
3235
3258
  tools: [...OUTLOOK_TOOLS],
3236
3259
  oauth,
3237
3260
  async onInit(_client) {
@@ -3273,6 +3296,8 @@ function airtableIntegration(config = {}) {
3273
3296
  };
3274
3297
  return {
3275
3298
  id: "airtable",
3299
+ name: "Airtable",
3300
+ logoUrl: "https://cdn.simpleicons.org/airtable",
3276
3301
  tools: [...AIRTABLE_TOOLS],
3277
3302
  oauth,
3278
3303
  async onInit(_client) {
@@ -3314,6 +3339,8 @@ function todoistIntegration(config = {}) {
3314
3339
  };
3315
3340
  return {
3316
3341
  id: "todoist",
3342
+ name: "Todoist",
3343
+ logoUrl: "https://cdn.simpleicons.org/todoist",
3317
3344
  tools: [...TODOIST_TOOLS],
3318
3345
  oauth,
3319
3346
  async onInit(_client) {
@@ -3356,6 +3383,8 @@ function whatsappIntegration(config = {}) {
3356
3383
  };
3357
3384
  return {
3358
3385
  id: "whatsapp",
3386
+ name: "WhatsApp Business",
3387
+ logoUrl: "https://cdn.simpleicons.org/whatsapp",
3359
3388
  tools: [...WHATSAPP_TOOLS],
3360
3389
  oauth,
3361
3390
  async onInit(_client) {
@@ -3397,6 +3426,8 @@ function calcomIntegration(config = {}) {
3397
3426
  };
3398
3427
  return {
3399
3428
  id: "calcom",
3429
+ name: "Cal.com",
3430
+ logoUrl: "https://cdn.simpleicons.org/calendly",
3400
3431
  tools: [...CALCOM_TOOLS],
3401
3432
  oauth,
3402
3433
  async onInit(_client) {
@@ -3439,6 +3470,8 @@ function rampIntegration(config = {}) {
3439
3470
  };
3440
3471
  return {
3441
3472
  id: "ramp",
3473
+ name: "Ramp",
3474
+ logoUrl: "https://cdn.simpleicons.org/ramp",
3442
3475
  tools: [...RAMP_TOOLS],
3443
3476
  oauth,
3444
3477
  async onInit(_client) {
@@ -3480,6 +3513,8 @@ function onedriveIntegration(config = {}) {
3480
3513
  };
3481
3514
  return {
3482
3515
  id: "onedrive",
3516
+ name: "OneDrive",
3517
+ logoUrl: "https://cdn.simpleicons.org/onedrive",
3483
3518
  tools: [...ONEDRIVE_TOOLS],
3484
3519
  oauth,
3485
3520
  async onInit(_client) {
@@ -3529,6 +3564,8 @@ function gworkspaceIntegration(config = {}) {
3529
3564
  };
3530
3565
  return {
3531
3566
  id: "gworkspace",
3567
+ name: "Google Workspace",
3568
+ logoUrl: "https://cdn.simpleicons.org/google",
3532
3569
  tools: [...GWORKSPACE_TOOLS],
3533
3570
  oauth,
3534
3571
  async onInit(_client) {
@@ -3574,6 +3611,8 @@ function polarIntegration(config = {}) {
3574
3611
  };
3575
3612
  return {
3576
3613
  id: "polar",
3614
+ name: "Polar",
3615
+ logoUrl: "https://cdn.simpleicons.org/polar",
3577
3616
  tools: [...POLAR_TOOLS],
3578
3617
  oauth,
3579
3618
  async onInit(_client) {
@@ -3615,6 +3654,8 @@ function figmaIntegration(config = {}) {
3615
3654
  };
3616
3655
  return {
3617
3656
  id: "figma",
3657
+ name: "Figma",
3658
+ logoUrl: "https://cdn.simpleicons.org/figma",
3618
3659
  tools: [...FIGMA_TOOLS],
3619
3660
  oauth,
3620
3661
  async onInit(_client) {
@@ -3656,6 +3697,8 @@ function intercomIntegration(config = {}) {
3656
3697
  };
3657
3698
  return {
3658
3699
  id: "intercom",
3700
+ name: "Intercom",
3701
+ logoUrl: "https://cdn.simpleicons.org/intercom",
3659
3702
  tools: [...INTERCOM_TOOLS],
3660
3703
  oauth,
3661
3704
  async onInit(_client) {
@@ -3705,6 +3748,8 @@ function hubspotIntegration(config = {}) {
3705
3748
  };
3706
3749
  return {
3707
3750
  id: "hubspot",
3751
+ name: "HubSpot",
3752
+ logoUrl: "https://cdn.simpleicons.org/hubspot",
3708
3753
  tools: [...HUBSPOT_TOOLS],
3709
3754
  oauth,
3710
3755
  async onInit(_client) {
@@ -3749,6 +3794,8 @@ function youtubeIntegration(config = {}) {
3749
3794
  };
3750
3795
  return {
3751
3796
  id: "youtube",
3797
+ name: "YouTube",
3798
+ logoUrl: "https://cdn.simpleicons.org/youtube",
3752
3799
  tools: [...YOUTUBE_TOOLS],
3753
3800
  oauth,
3754
3801
  async onInit(_client) {
@@ -3780,6 +3827,8 @@ var init_youtube = __esm(() => {
3780
3827
  function cursorIntegration(_config = {}) {
3781
3828
  return {
3782
3829
  id: "cursor",
3830
+ name: "Cursor",
3831
+ logoUrl: "https://cdn.simpleicons.org/cursor",
3783
3832
  tools: [...CURSOR_TOOLS],
3784
3833
  async onInit(_client) {
3785
3834
  logger29.debug("Cursor integration initialized");
@@ -3820,6 +3869,8 @@ function genericOAuthIntegration(config) {
3820
3869
  };
3821
3870
  return {
3822
3871
  id: config.id,
3872
+ name: config.name,
3873
+ logoUrl: config.logoUrl,
3823
3874
  tools: config.tools,
3824
3875
  oauth,
3825
3876
  onInit: config.onInit,
@@ -9628,7 +9679,6 @@ var init_zodToJsonSchema = __esm(() => {
9628
9679
 
9629
9680
  // node_modules/zod-to-json-schema/dist/esm/index.js
9630
9681
  var init_esm = __esm(() => {
9631
- init_zodToJsonSchema();
9632
9682
  init_Options();
9633
9683
  init_Refs();
9634
9684
  init_parseDef();
@@ -9660,6 +9710,7 @@ var init_esm = __esm(() => {
9660
9710
  init_unknown();
9661
9711
  init_selectParser();
9662
9712
  init_zodToJsonSchema();
9713
+ init_zodToJsonSchema();
9663
9714
  });
9664
9715
 
9665
9716
  // src/ai/openai.ts
package/dist/oauth.js CHANGED
@@ -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,
@@ -2681,6 +2684,8 @@ function githubIntegration(config = {}) {
2681
2684
  };
2682
2685
  return {
2683
2686
  id: "github",
2687
+ name: "GitHub",
2688
+ logoUrl: "https://cdn.simpleicons.org/github",
2684
2689
  tools: [...GITHUB_TOOLS],
2685
2690
  oauth,
2686
2691
  async onInit(_client) {
@@ -2734,6 +2739,8 @@ function gmailIntegration(config = {}) {
2734
2739
  };
2735
2740
  return {
2736
2741
  id: "gmail",
2742
+ name: "Gmail",
2743
+ logoUrl: "https://cdn.simpleicons.org/gmail",
2737
2744
  tools: [...GMAIL_TOOLS],
2738
2745
  oauth,
2739
2746
  async onInit(_client) {
@@ -2773,6 +2780,8 @@ function notionIntegration(config = {}) {
2773
2780
  };
2774
2781
  return {
2775
2782
  id: "notion",
2783
+ name: "Notion",
2784
+ logoUrl: "https://cdn.simpleicons.org/notion",
2776
2785
  tools: [...NOTION_TOOLS],
2777
2786
  oauth,
2778
2787
  async onInit(_client) {
@@ -2807,6 +2816,8 @@ function slackIntegration(config = {}) {
2807
2816
  };
2808
2817
  return {
2809
2818
  id: "slack",
2819
+ name: "Slack",
2820
+ logoUrl: "https://cdn.simpleicons.org/slack",
2810
2821
  tools: [...SLACK_TOOLS],
2811
2822
  oauth,
2812
2823
  async onInit(_client) {
@@ -2848,6 +2859,8 @@ function linearIntegration(config = {}) {
2848
2859
  };
2849
2860
  return {
2850
2861
  id: "linear",
2862
+ name: "Linear",
2863
+ logoUrl: "https://cdn.simpleicons.org/linear",
2851
2864
  tools: [...LINEAR_TOOLS],
2852
2865
  oauth,
2853
2866
  async onInit(_client) {
@@ -2889,6 +2902,8 @@ function vercelIntegration(config = {}) {
2889
2902
  };
2890
2903
  return {
2891
2904
  id: "vercel",
2905
+ name: "Vercel",
2906
+ logoUrl: "https://cdn.simpleicons.org/vercel",
2892
2907
  tools: [...VERCEL_TOOLS],
2893
2908
  oauth,
2894
2909
  async onInit(_client) {
@@ -2931,6 +2946,8 @@ function zendeskIntegration(config = {}) {
2931
2946
  };
2932
2947
  return {
2933
2948
  id: "zendesk",
2949
+ name: "Zendesk",
2950
+ logoUrl: "https://cdn.simpleicons.org/zendesk",
2934
2951
  tools: [...ZENDESK_TOOLS],
2935
2952
  oauth,
2936
2953
  async onInit(_client) {
@@ -2972,6 +2989,8 @@ function stripeIntegration(config = {}) {
2972
2989
  };
2973
2990
  return {
2974
2991
  id: "stripe",
2992
+ name: "Stripe",
2993
+ logoUrl: "https://cdn.simpleicons.org/stripe",
2975
2994
  tools: [...STRIPE_TOOLS],
2976
2995
  oauth,
2977
2996
  async onInit(_client) {
@@ -3013,6 +3032,8 @@ function gcalIntegration(config = {}) {
3013
3032
  };
3014
3033
  return {
3015
3034
  id: "gcal",
3035
+ name: "Google Calendar",
3036
+ logoUrl: "https://cdn.simpleicons.org/googlecalendar",
3016
3037
  tools: [...GCAL_TOOLS],
3017
3038
  oauth,
3018
3039
  async onInit(_client) {
@@ -3054,6 +3075,8 @@ function outlookIntegration(config = {}) {
3054
3075
  };
3055
3076
  return {
3056
3077
  id: "outlook",
3078
+ name: "Outlook",
3079
+ logoUrl: "https://cdn.simpleicons.org/microsoftoutlook",
3057
3080
  tools: [...OUTLOOK_TOOLS],
3058
3081
  oauth,
3059
3082
  async onInit(_client) {
@@ -3095,6 +3118,8 @@ function airtableIntegration(config = {}) {
3095
3118
  };
3096
3119
  return {
3097
3120
  id: "airtable",
3121
+ name: "Airtable",
3122
+ logoUrl: "https://cdn.simpleicons.org/airtable",
3098
3123
  tools: [...AIRTABLE_TOOLS],
3099
3124
  oauth,
3100
3125
  async onInit(_client) {
@@ -3136,6 +3161,8 @@ function todoistIntegration(config = {}) {
3136
3161
  };
3137
3162
  return {
3138
3163
  id: "todoist",
3164
+ name: "Todoist",
3165
+ logoUrl: "https://cdn.simpleicons.org/todoist",
3139
3166
  tools: [...TODOIST_TOOLS],
3140
3167
  oauth,
3141
3168
  async onInit(_client) {
@@ -3178,6 +3205,8 @@ function whatsappIntegration(config = {}) {
3178
3205
  };
3179
3206
  return {
3180
3207
  id: "whatsapp",
3208
+ name: "WhatsApp Business",
3209
+ logoUrl: "https://cdn.simpleicons.org/whatsapp",
3181
3210
  tools: [...WHATSAPP_TOOLS],
3182
3211
  oauth,
3183
3212
  async onInit(_client) {
@@ -3219,6 +3248,8 @@ function calcomIntegration(config = {}) {
3219
3248
  };
3220
3249
  return {
3221
3250
  id: "calcom",
3251
+ name: "Cal.com",
3252
+ logoUrl: "https://cdn.simpleicons.org/calendly",
3222
3253
  tools: [...CALCOM_TOOLS],
3223
3254
  oauth,
3224
3255
  async onInit(_client) {
@@ -3261,6 +3292,8 @@ function rampIntegration(config = {}) {
3261
3292
  };
3262
3293
  return {
3263
3294
  id: "ramp",
3295
+ name: "Ramp",
3296
+ logoUrl: "https://cdn.simpleicons.org/ramp",
3264
3297
  tools: [...RAMP_TOOLS],
3265
3298
  oauth,
3266
3299
  async onInit(_client) {
@@ -3302,6 +3335,8 @@ function onedriveIntegration(config = {}) {
3302
3335
  };
3303
3336
  return {
3304
3337
  id: "onedrive",
3338
+ name: "OneDrive",
3339
+ logoUrl: "https://cdn.simpleicons.org/onedrive",
3305
3340
  tools: [...ONEDRIVE_TOOLS],
3306
3341
  oauth,
3307
3342
  async onInit(_client) {
@@ -3351,6 +3386,8 @@ function gworkspaceIntegration(config = {}) {
3351
3386
  };
3352
3387
  return {
3353
3388
  id: "gworkspace",
3389
+ name: "Google Workspace",
3390
+ logoUrl: "https://cdn.simpleicons.org/google",
3354
3391
  tools: [...GWORKSPACE_TOOLS],
3355
3392
  oauth,
3356
3393
  async onInit(_client) {
@@ -3396,6 +3433,8 @@ function polarIntegration(config = {}) {
3396
3433
  };
3397
3434
  return {
3398
3435
  id: "polar",
3436
+ name: "Polar",
3437
+ logoUrl: "https://cdn.simpleicons.org/polar",
3399
3438
  tools: [...POLAR_TOOLS],
3400
3439
  oauth,
3401
3440
  async onInit(_client) {
@@ -3437,6 +3476,8 @@ function figmaIntegration(config = {}) {
3437
3476
  };
3438
3477
  return {
3439
3478
  id: "figma",
3479
+ name: "Figma",
3480
+ logoUrl: "https://cdn.simpleicons.org/figma",
3440
3481
  tools: [...FIGMA_TOOLS],
3441
3482
  oauth,
3442
3483
  async onInit(_client) {
@@ -3478,6 +3519,8 @@ function intercomIntegration(config = {}) {
3478
3519
  };
3479
3520
  return {
3480
3521
  id: "intercom",
3522
+ name: "Intercom",
3523
+ logoUrl: "https://cdn.simpleicons.org/intercom",
3481
3524
  tools: [...INTERCOM_TOOLS],
3482
3525
  oauth,
3483
3526
  async onInit(_client) {
@@ -3527,6 +3570,8 @@ function hubspotIntegration(config = {}) {
3527
3570
  };
3528
3571
  return {
3529
3572
  id: "hubspot",
3573
+ name: "HubSpot",
3574
+ logoUrl: "https://cdn.simpleicons.org/hubspot",
3530
3575
  tools: [...HUBSPOT_TOOLS],
3531
3576
  oauth,
3532
3577
  async onInit(_client) {
@@ -3571,6 +3616,8 @@ function youtubeIntegration(config = {}) {
3571
3616
  };
3572
3617
  return {
3573
3618
  id: "youtube",
3619
+ name: "YouTube",
3620
+ logoUrl: "https://cdn.simpleicons.org/youtube",
3574
3621
  tools: [...YOUTUBE_TOOLS],
3575
3622
  oauth,
3576
3623
  async onInit(_client) {
@@ -3602,6 +3649,8 @@ var init_youtube = __esm(() => {
3602
3649
  function cursorIntegration(_config = {}) {
3603
3650
  return {
3604
3651
  id: "cursor",
3652
+ name: "Cursor",
3653
+ logoUrl: "https://cdn.simpleicons.org/cursor",
3605
3654
  tools: [...CURSOR_TOOLS],
3606
3655
  async onInit(_client) {
3607
3656
  logger29.debug("Cursor integration initialized");
@@ -3642,6 +3691,8 @@ function genericOAuthIntegration(config) {
3642
3691
  };
3643
3692
  return {
3644
3693
  id: config.id,
3694
+ name: config.name,
3695
+ logoUrl: config.logoUrl,
3645
3696
  tools: config.tools,
3646
3697
  oauth,
3647
3698
  onInit: config.onInit,
@@ -9462,7 +9513,6 @@ var init_zodToJsonSchema = __esm(() => {
9462
9513
 
9463
9514
  // node_modules/zod-to-json-schema/dist/esm/index.js
9464
9515
  var init_esm = __esm(() => {
9465
- init_zodToJsonSchema();
9466
9516
  init_Options();
9467
9517
  init_Refs();
9468
9518
  init_parseDef();
@@ -9494,6 +9544,7 @@ var init_esm = __esm(() => {
9494
9544
  init_unknown();
9495
9545
  init_selectParser();
9496
9546
  init_zodToJsonSchema();
9547
+ init_zodToJsonSchema();
9497
9548
  });
9498
9549
 
9499
9550
  // src/ai/openai.ts