qovery-typescript-axios 1.1.943 → 1.1.944

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/api.ts CHANGED
@@ -19308,6 +19308,99 @@ export interface ManagedDatabaseTypeResponseList {
19308
19308
  */
19309
19309
  'results'?: Array<ManagedDatabaseTypeResponse>;
19310
19310
  }
19311
+ /**
19312
+ *
19313
+ * @export
19314
+ * @interface McpServerRequest
19315
+ */
19316
+ export interface McpServerRequest {
19317
+ /**
19318
+ * Unique MCP server name within the organization
19319
+ * @type {string}
19320
+ * @memberof McpServerRequest
19321
+ */
19322
+ 'name': string;
19323
+ /**
19324
+ *
19325
+ * @type {string}
19326
+ * @memberof McpServerRequest
19327
+ */
19328
+ 'description'?: string;
19329
+ /**
19330
+ * HTTPS URL of the remote MCP server
19331
+ * @type {string}
19332
+ * @memberof McpServerRequest
19333
+ */
19334
+ 'url': string;
19335
+ /**
19336
+ * HTTP headers sent to the MCP server. Header values are encrypted and never returned by the API.
19337
+ * @type {{ [key: string]: string; }}
19338
+ * @memberof McpServerRequest
19339
+ */
19340
+ 'headers'?: { [key: string]: string; };
19341
+ }
19342
+ /**
19343
+ *
19344
+ * @export
19345
+ * @interface McpServerResponse
19346
+ */
19347
+ export interface McpServerResponse {
19348
+ /**
19349
+ *
19350
+ * @type {string}
19351
+ * @memberof McpServerResponse
19352
+ */
19353
+ 'id': string;
19354
+ /**
19355
+ *
19356
+ * @type {string}
19357
+ * @memberof McpServerResponse
19358
+ */
19359
+ 'created_at': string;
19360
+ /**
19361
+ *
19362
+ * @type {string}
19363
+ * @memberof McpServerResponse
19364
+ */
19365
+ 'updated_at': string;
19366
+ /**
19367
+ *
19368
+ * @type {string}
19369
+ * @memberof McpServerResponse
19370
+ */
19371
+ 'name': string;
19372
+ /**
19373
+ *
19374
+ * @type {string}
19375
+ * @memberof McpServerResponse
19376
+ */
19377
+ 'description': string;
19378
+ /**
19379
+ * HTTPS URL of the remote MCP server
19380
+ * @type {string}
19381
+ * @memberof McpServerResponse
19382
+ */
19383
+ 'url': string;
19384
+ /**
19385
+ * Names of the configured HTTP headers. Header values are never returned.
19386
+ * @type {Set<string>}
19387
+ * @memberof McpServerResponse
19388
+ */
19389
+ 'header_names': Set<string>;
19390
+ }
19391
+ /**
19392
+ *
19393
+ * @export
19394
+ * @interface McpServerResponseList
19395
+ */
19396
+ export interface McpServerResponseList {
19397
+ /**
19398
+ *
19399
+ * @type {Array<McpServerResponse>}
19400
+ * @memberof McpServerResponseList
19401
+ */
19402
+ 'results': Array<McpServerResponse>;
19403
+ }
19311
19404
  /**
19312
19405
  *
19313
19406
  * @export
@@ -62993,6 +63086,443 @@ export class LifecycleTemplateMainCallsApi extends BaseAPI {
62993
63086
 
62994
63087
 
62995
63088
 
63089
+ /**
63090
+ * MCPServersApi - axios parameter creator
63091
+ * @export
63092
+ */
63093
+ export const MCPServersApiAxiosParamCreator = function (configuration?: Configuration) {
63094
+ return {
63095
+ /**
63096
+ * Configure a remote HTTPS MCP server for an organization.
63097
+ * @summary Create an MCP server
63098
+ * @param {string} organizationId Organization ID
63099
+ * @param {McpServerRequest} mcpServerRequest
63100
+ * @param {*} [options] Override http request option.
63101
+ * @throws {RequiredError}
63102
+ */
63103
+ createMcpServer: async (organizationId: string, mcpServerRequest: McpServerRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
63104
+ // verify required parameter 'organizationId' is not null or undefined
63105
+ assertParamExists('createMcpServer', 'organizationId', organizationId)
63106
+ // verify required parameter 'mcpServerRequest' is not null or undefined
63107
+ assertParamExists('createMcpServer', 'mcpServerRequest', mcpServerRequest)
63108
+ const localVarPath = `/organization/{organizationId}/mcpServer`
63109
+ .replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)));
63110
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
63111
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
63112
+ let baseOptions;
63113
+ if (configuration) {
63114
+ baseOptions = configuration.baseOptions;
63115
+ }
63116
+
63117
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
63118
+ const localVarHeaderParameter = {} as any;
63119
+ const localVarQueryParameter = {} as any;
63120
+
63121
+ // authentication ApiKeyAuth required
63122
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
63123
+
63124
+ // authentication bearerAuth required
63125
+ // http bearer authentication required
63126
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
63127
+
63128
+
63129
+
63130
+ localVarHeaderParameter['Content-Type'] = 'application/json';
63131
+
63132
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
63133
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
63134
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
63135
+ localVarRequestOptions.data = serializeDataIfNeeded(mcpServerRequest, localVarRequestOptions, configuration)
63136
+
63137
+ return {
63138
+ url: toPathString(localVarUrlObj),
63139
+ options: localVarRequestOptions,
63140
+ };
63141
+ },
63142
+ /**
63143
+ * Delete a remote MCP server configuration.
63144
+ * @summary Delete an MCP server
63145
+ * @param {string} mcpServerId MCP Server ID
63146
+ * @param {*} [options] Override http request option.
63147
+ * @throws {RequiredError}
63148
+ */
63149
+ deleteMcpServer: async (mcpServerId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
63150
+ // verify required parameter 'mcpServerId' is not null or undefined
63151
+ assertParamExists('deleteMcpServer', 'mcpServerId', mcpServerId)
63152
+ const localVarPath = `/mcpServer/{mcpServerId}`
63153
+ .replace(`{${"mcpServerId"}}`, encodeURIComponent(String(mcpServerId)));
63154
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
63155
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
63156
+ let baseOptions;
63157
+ if (configuration) {
63158
+ baseOptions = configuration.baseOptions;
63159
+ }
63160
+
63161
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
63162
+ const localVarHeaderParameter = {} as any;
63163
+ const localVarQueryParameter = {} as any;
63164
+
63165
+ // authentication ApiKeyAuth required
63166
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
63167
+
63168
+ // authentication bearerAuth required
63169
+ // http bearer authentication required
63170
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
63171
+
63172
+
63173
+
63174
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
63175
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
63176
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
63177
+
63178
+ return {
63179
+ url: toPathString(localVarUrlObj),
63180
+ options: localVarRequestOptions,
63181
+ };
63182
+ },
63183
+ /**
63184
+ * Replace a remote MCP server configuration, including all configured headers.
63185
+ * @summary Edit an MCP server
63186
+ * @param {string} mcpServerId MCP Server ID
63187
+ * @param {McpServerRequest} mcpServerRequest
63188
+ * @param {*} [options] Override http request option.
63189
+ * @throws {RequiredError}
63190
+ */
63191
+ editMcpServer: async (mcpServerId: string, mcpServerRequest: McpServerRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
63192
+ // verify required parameter 'mcpServerId' is not null or undefined
63193
+ assertParamExists('editMcpServer', 'mcpServerId', mcpServerId)
63194
+ // verify required parameter 'mcpServerRequest' is not null or undefined
63195
+ assertParamExists('editMcpServer', 'mcpServerRequest', mcpServerRequest)
63196
+ const localVarPath = `/mcpServer/{mcpServerId}`
63197
+ .replace(`{${"mcpServerId"}}`, encodeURIComponent(String(mcpServerId)));
63198
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
63199
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
63200
+ let baseOptions;
63201
+ if (configuration) {
63202
+ baseOptions = configuration.baseOptions;
63203
+ }
63204
+
63205
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
63206
+ const localVarHeaderParameter = {} as any;
63207
+ const localVarQueryParameter = {} as any;
63208
+
63209
+ // authentication ApiKeyAuth required
63210
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
63211
+
63212
+ // authentication bearerAuth required
63213
+ // http bearer authentication required
63214
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
63215
+
63216
+
63217
+
63218
+ localVarHeaderParameter['Content-Type'] = 'application/json';
63219
+
63220
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
63221
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
63222
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
63223
+ localVarRequestOptions.data = serializeDataIfNeeded(mcpServerRequest, localVarRequestOptions, configuration)
63224
+
63225
+ return {
63226
+ url: toPathString(localVarUrlObj),
63227
+ options: localVarRequestOptions,
63228
+ };
63229
+ },
63230
+ /**
63231
+ * Get a remote MCP server configuration. Header values are never returned.
63232
+ * @summary Get an MCP server
63233
+ * @param {string} mcpServerId MCP Server ID
63234
+ * @param {*} [options] Override http request option.
63235
+ * @throws {RequiredError}
63236
+ */
63237
+ getMcpServer: async (mcpServerId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
63238
+ // verify required parameter 'mcpServerId' is not null or undefined
63239
+ assertParamExists('getMcpServer', 'mcpServerId', mcpServerId)
63240
+ const localVarPath = `/mcpServer/{mcpServerId}`
63241
+ .replace(`{${"mcpServerId"}}`, encodeURIComponent(String(mcpServerId)));
63242
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
63243
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
63244
+ let baseOptions;
63245
+ if (configuration) {
63246
+ baseOptions = configuration.baseOptions;
63247
+ }
63248
+
63249
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
63250
+ const localVarHeaderParameter = {} as any;
63251
+ const localVarQueryParameter = {} as any;
63252
+
63253
+ // authentication ApiKeyAuth required
63254
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
63255
+
63256
+ // authentication bearerAuth required
63257
+ // http bearer authentication required
63258
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
63259
+
63260
+
63261
+
63262
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
63263
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
63264
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
63265
+
63266
+ return {
63267
+ url: toPathString(localVarUrlObj),
63268
+ options: localVarRequestOptions,
63269
+ };
63270
+ },
63271
+ /**
63272
+ * List the remote MCP servers configured for an organization. Header values are never returned.
63273
+ * @summary List organization MCP servers
63274
+ * @param {string} organizationId Organization ID
63275
+ * @param {*} [options] Override http request option.
63276
+ * @throws {RequiredError}
63277
+ */
63278
+ listMcpServers: async (organizationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
63279
+ // verify required parameter 'organizationId' is not null or undefined
63280
+ assertParamExists('listMcpServers', 'organizationId', organizationId)
63281
+ const localVarPath = `/organization/{organizationId}/mcpServer`
63282
+ .replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)));
63283
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
63284
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
63285
+ let baseOptions;
63286
+ if (configuration) {
63287
+ baseOptions = configuration.baseOptions;
63288
+ }
63289
+
63290
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
63291
+ const localVarHeaderParameter = {} as any;
63292
+ const localVarQueryParameter = {} as any;
63293
+
63294
+ // authentication ApiKeyAuth required
63295
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
63296
+
63297
+ // authentication bearerAuth required
63298
+ // http bearer authentication required
63299
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
63300
+
63301
+
63302
+
63303
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
63304
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
63305
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
63306
+
63307
+ return {
63308
+ url: toPathString(localVarUrlObj),
63309
+ options: localVarRequestOptions,
63310
+ };
63311
+ },
63312
+ }
63313
+ };
63314
+
63315
+ /**
63316
+ * MCPServersApi - functional programming interface
63317
+ * @export
63318
+ */
63319
+ export const MCPServersApiFp = function(configuration?: Configuration) {
63320
+ const localVarAxiosParamCreator = MCPServersApiAxiosParamCreator(configuration)
63321
+ return {
63322
+ /**
63323
+ * Configure a remote HTTPS MCP server for an organization.
63324
+ * @summary Create an MCP server
63325
+ * @param {string} organizationId Organization ID
63326
+ * @param {McpServerRequest} mcpServerRequest
63327
+ * @param {*} [options] Override http request option.
63328
+ * @throws {RequiredError}
63329
+ */
63330
+ async createMcpServer(organizationId: string, mcpServerRequest: McpServerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<McpServerResponse>> {
63331
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createMcpServer(organizationId, mcpServerRequest, options);
63332
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
63333
+ const localVarOperationServerBasePath = operationServerMap['MCPServersApi.createMcpServer']?.[localVarOperationServerIndex]?.url;
63334
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
63335
+ },
63336
+ /**
63337
+ * Delete a remote MCP server configuration.
63338
+ * @summary Delete an MCP server
63339
+ * @param {string} mcpServerId MCP Server ID
63340
+ * @param {*} [options] Override http request option.
63341
+ * @throws {RequiredError}
63342
+ */
63343
+ async deleteMcpServer(mcpServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
63344
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMcpServer(mcpServerId, options);
63345
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
63346
+ const localVarOperationServerBasePath = operationServerMap['MCPServersApi.deleteMcpServer']?.[localVarOperationServerIndex]?.url;
63347
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
63348
+ },
63349
+ /**
63350
+ * Replace a remote MCP server configuration, including all configured headers.
63351
+ * @summary Edit an MCP server
63352
+ * @param {string} mcpServerId MCP Server ID
63353
+ * @param {McpServerRequest} mcpServerRequest
63354
+ * @param {*} [options] Override http request option.
63355
+ * @throws {RequiredError}
63356
+ */
63357
+ async editMcpServer(mcpServerId: string, mcpServerRequest: McpServerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<McpServerResponse>> {
63358
+ const localVarAxiosArgs = await localVarAxiosParamCreator.editMcpServer(mcpServerId, mcpServerRequest, options);
63359
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
63360
+ const localVarOperationServerBasePath = operationServerMap['MCPServersApi.editMcpServer']?.[localVarOperationServerIndex]?.url;
63361
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
63362
+ },
63363
+ /**
63364
+ * Get a remote MCP server configuration. Header values are never returned.
63365
+ * @summary Get an MCP server
63366
+ * @param {string} mcpServerId MCP Server ID
63367
+ * @param {*} [options] Override http request option.
63368
+ * @throws {RequiredError}
63369
+ */
63370
+ async getMcpServer(mcpServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<McpServerResponse>> {
63371
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getMcpServer(mcpServerId, options);
63372
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
63373
+ const localVarOperationServerBasePath = operationServerMap['MCPServersApi.getMcpServer']?.[localVarOperationServerIndex]?.url;
63374
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
63375
+ },
63376
+ /**
63377
+ * List the remote MCP servers configured for an organization. Header values are never returned.
63378
+ * @summary List organization MCP servers
63379
+ * @param {string} organizationId Organization ID
63380
+ * @param {*} [options] Override http request option.
63381
+ * @throws {RequiredError}
63382
+ */
63383
+ async listMcpServers(organizationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<McpServerResponseList>> {
63384
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listMcpServers(organizationId, options);
63385
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
63386
+ const localVarOperationServerBasePath = operationServerMap['MCPServersApi.listMcpServers']?.[localVarOperationServerIndex]?.url;
63387
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
63388
+ },
63389
+ }
63390
+ };
63391
+
63392
+ /**
63393
+ * MCPServersApi - factory interface
63394
+ * @export
63395
+ */
63396
+ export const MCPServersApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
63397
+ const localVarFp = MCPServersApiFp(configuration)
63398
+ return {
63399
+ /**
63400
+ * Configure a remote HTTPS MCP server for an organization.
63401
+ * @summary Create an MCP server
63402
+ * @param {string} organizationId Organization ID
63403
+ * @param {McpServerRequest} mcpServerRequest
63404
+ * @param {*} [options] Override http request option.
63405
+ * @throws {RequiredError}
63406
+ */
63407
+ createMcpServer(organizationId: string, mcpServerRequest: McpServerRequest, options?: RawAxiosRequestConfig): AxiosPromise<McpServerResponse> {
63408
+ return localVarFp.createMcpServer(organizationId, mcpServerRequest, options).then((request) => request(axios, basePath));
63409
+ },
63410
+ /**
63411
+ * Delete a remote MCP server configuration.
63412
+ * @summary Delete an MCP server
63413
+ * @param {string} mcpServerId MCP Server ID
63414
+ * @param {*} [options] Override http request option.
63415
+ * @throws {RequiredError}
63416
+ */
63417
+ deleteMcpServer(mcpServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
63418
+ return localVarFp.deleteMcpServer(mcpServerId, options).then((request) => request(axios, basePath));
63419
+ },
63420
+ /**
63421
+ * Replace a remote MCP server configuration, including all configured headers.
63422
+ * @summary Edit an MCP server
63423
+ * @param {string} mcpServerId MCP Server ID
63424
+ * @param {McpServerRequest} mcpServerRequest
63425
+ * @param {*} [options] Override http request option.
63426
+ * @throws {RequiredError}
63427
+ */
63428
+ editMcpServer(mcpServerId: string, mcpServerRequest: McpServerRequest, options?: RawAxiosRequestConfig): AxiosPromise<McpServerResponse> {
63429
+ return localVarFp.editMcpServer(mcpServerId, mcpServerRequest, options).then((request) => request(axios, basePath));
63430
+ },
63431
+ /**
63432
+ * Get a remote MCP server configuration. Header values are never returned.
63433
+ * @summary Get an MCP server
63434
+ * @param {string} mcpServerId MCP Server ID
63435
+ * @param {*} [options] Override http request option.
63436
+ * @throws {RequiredError}
63437
+ */
63438
+ getMcpServer(mcpServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<McpServerResponse> {
63439
+ return localVarFp.getMcpServer(mcpServerId, options).then((request) => request(axios, basePath));
63440
+ },
63441
+ /**
63442
+ * List the remote MCP servers configured for an organization. Header values are never returned.
63443
+ * @summary List organization MCP servers
63444
+ * @param {string} organizationId Organization ID
63445
+ * @param {*} [options] Override http request option.
63446
+ * @throws {RequiredError}
63447
+ */
63448
+ listMcpServers(organizationId: string, options?: RawAxiosRequestConfig): AxiosPromise<McpServerResponseList> {
63449
+ return localVarFp.listMcpServers(organizationId, options).then((request) => request(axios, basePath));
63450
+ },
63451
+ };
63452
+ };
63453
+
63454
+ /**
63455
+ * MCPServersApi - object-oriented interface
63456
+ * @export
63457
+ * @class MCPServersApi
63458
+ * @extends {BaseAPI}
63459
+ */
63460
+ export class MCPServersApi extends BaseAPI {
63461
+ /**
63462
+ * Configure a remote HTTPS MCP server for an organization.
63463
+ * @summary Create an MCP server
63464
+ * @param {string} organizationId Organization ID
63465
+ * @param {McpServerRequest} mcpServerRequest
63466
+ * @param {*} [options] Override http request option.
63467
+ * @throws {RequiredError}
63468
+ * @memberof MCPServersApi
63469
+ */
63470
+ public createMcpServer(organizationId: string, mcpServerRequest: McpServerRequest, options?: RawAxiosRequestConfig) {
63471
+ return MCPServersApiFp(this.configuration).createMcpServer(organizationId, mcpServerRequest, options).then((request) => request(this.axios, this.basePath));
63472
+ }
63473
+
63474
+ /**
63475
+ * Delete a remote MCP server configuration.
63476
+ * @summary Delete an MCP server
63477
+ * @param {string} mcpServerId MCP Server ID
63478
+ * @param {*} [options] Override http request option.
63479
+ * @throws {RequiredError}
63480
+ * @memberof MCPServersApi
63481
+ */
63482
+ public deleteMcpServer(mcpServerId: string, options?: RawAxiosRequestConfig) {
63483
+ return MCPServersApiFp(this.configuration).deleteMcpServer(mcpServerId, options).then((request) => request(this.axios, this.basePath));
63484
+ }
63485
+
63486
+ /**
63487
+ * Replace a remote MCP server configuration, including all configured headers.
63488
+ * @summary Edit an MCP server
63489
+ * @param {string} mcpServerId MCP Server ID
63490
+ * @param {McpServerRequest} mcpServerRequest
63491
+ * @param {*} [options] Override http request option.
63492
+ * @throws {RequiredError}
63493
+ * @memberof MCPServersApi
63494
+ */
63495
+ public editMcpServer(mcpServerId: string, mcpServerRequest: McpServerRequest, options?: RawAxiosRequestConfig) {
63496
+ return MCPServersApiFp(this.configuration).editMcpServer(mcpServerId, mcpServerRequest, options).then((request) => request(this.axios, this.basePath));
63497
+ }
63498
+
63499
+ /**
63500
+ * Get a remote MCP server configuration. Header values are never returned.
63501
+ * @summary Get an MCP server
63502
+ * @param {string} mcpServerId MCP Server ID
63503
+ * @param {*} [options] Override http request option.
63504
+ * @throws {RequiredError}
63505
+ * @memberof MCPServersApi
63506
+ */
63507
+ public getMcpServer(mcpServerId: string, options?: RawAxiosRequestConfig) {
63508
+ return MCPServersApiFp(this.configuration).getMcpServer(mcpServerId, options).then((request) => request(this.axios, this.basePath));
63509
+ }
63510
+
63511
+ /**
63512
+ * List the remote MCP servers configured for an organization. Header values are never returned.
63513
+ * @summary List organization MCP servers
63514
+ * @param {string} organizationId Organization ID
63515
+ * @param {*} [options] Override http request option.
63516
+ * @throws {RequiredError}
63517
+ * @memberof MCPServersApi
63518
+ */
63519
+ public listMcpServers(organizationId: string, options?: RawAxiosRequestConfig) {
63520
+ return MCPServersApiFp(this.configuration).listMcpServers(organizationId, options).then((request) => request(this.axios, this.basePath));
63521
+ }
63522
+ }
63523
+
63524
+
63525
+
62996
63526
  /**
62997
63527
  * MembersApi - axios parameter creator
62998
63528
  * @export