Skip to main content

configure

client.mcp.configure(data: McpConfigureRequest): Promise<unknown>

Applies global MCP configuration settings.

Updates the workspace-level MCP settings that affect how all MCP servers are managed, including default timeout values, transport preferences, and security policies.

Parameters

ParameterTypeRequiredDescription
dataMcpConfigureRequestYesThe global MCP configuration to apply

Returns

Promise<unknown> — A promise that resolves when the configuration has been saved

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.mcp.configure(/* McpConfigureRequest */);
console.log(result);