Path: blob/main/src/vs/workbench/contrib/mcp/common/mcpCommandIds.ts
5272 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45/**6* Contains all MCP command IDs used in the workbench.7*/8export const enum McpCommandIds {9AddConfiguration = 'workbench.mcp.addConfiguration',10Browse = 'workbench.mcp.browseServers',11InstallFromManifest = 'workbench.mcp.installFromManifest',12BrowsePage = 'workbench.mcp.browseServersPage',13BrowseResources = 'workbench.mcp.browseResources',14ConfigureSamplingModels = 'workbench.mcp.configureSamplingModels',15EditStoredInput = 'workbench.mcp.editStoredInput',16InstallFromActivation = 'workbench.mcp.installFromActivation',17ListServer = 'workbench.mcp.listServer',18OpenRemoteUserMcp = 'workbench.mcp.openRemoteUserMcpJson',19OpenUserMcp = 'workbench.mcp.openUserMcpJson',20OpenWorkspaceFolderMcp = 'workbench.mcp.openWorkspaceFolderMcpJson',21OpenWorkspaceMcp = 'workbench.mcp.openWorkspaceMcpJson',22RemoveStoredInput = 'workbench.mcp.removeStoredInput',23ResetCachedTools = 'workbench.mcp.resetCachedTools',24ResetTrust = 'workbench.mcp.resetTrust',25RestartServer = 'workbench.mcp.restartServer',26ServerOptions = 'workbench.mcp.serverOptions',27ServerOptionsInConfirmation = 'workbench.mcp.serverOptionsInConfirmation',28ShowConfiguration = 'workbench.mcp.showConfiguration',29ShowInstalled = 'workbench.mcp.showInstalledServers',30ShowOutput = 'workbench.mcp.showOutput',31SkipCurrentAutostart = 'workbench.mcp.skipAutostart',32StartPromptForServer = 'workbench.mcp.startPromptForServer',33StartServer = 'workbench.mcp.startServer',34StopServer = 'workbench.mcp.stopServer',35}363738