Skip to content

McpClientConfig

type McpClientConfig = RuntimeConfig & {
transport: Transport;
disableMcpInstrumentation?: boolean;
tasksConfig?: TasksConfig;
};

Defined in: src/mcp.ts:40

Arguments for configuring an MCP Client.

NameTypeDescriptionDefined in
transportTransport-src/mcp.ts:41
disableMcpInstrumentation?booleanDisable OpenTelemetry MCP instrumentation.src/mcp.ts:44
tasksConfig?TasksConfigConfiguration for task-augmented tool execution (experimental). When provided (even as empty object), enables MCP task-based tool invocation. When undefined, tools are called directly without task management.src/mcp.ts:51