From fa99427534301606eb84c30cd8f7701ac2c35f90 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Tue, 29 Jul 2025 17:55:48 -0700 Subject: [PATCH] mcp: make autostart opt in for this release (#258713) We might make it default in the future... --- src/vs/workbench/contrib/chat/browser/chat.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/chat/browser/chat.contribution.ts b/src/vs/workbench/contrib/chat/browser/chat.contribution.ts index 3ab48a0142d..e99e252a1c0 100644 --- a/src/vs/workbench/contrib/chat/browser/chat.contribution.ts +++ b/src/vs/workbench/contrib/chat/browser/chat.contribution.ts @@ -303,7 +303,7 @@ configurationRegistry.registerConfiguration({ [mcpAutoStartConfig]: { type: 'string', description: nls.localize('chat.mcp.autostart', "Controls whether MCP servers should be automatically started when the chat messages are submitted."), - default: McpAutoStartValue.NewAndOutdated, + default: McpAutoStartValue.Never, enum: [ McpAutoStartValue.Never, McpAutoStartValue.OnlyNew,