Path: blob/main/src/vs/workbench/contrib/mcp/common/mcpCommandIds.ts
3296 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',11BrowsePage = 'workbench.mcp.browseServersPage',12ShowInstalled = 'workbench.mcp.showInstalledServers',13OpenUserMcp = 'workbench.mcp.openUserMcpJson',14OpenRemoteUserMcp = 'workbench.mcp.openRemoteUserMcpJson',15OpenWorkspaceFolderMcp = 'workbench.mcp.openWorkspaceFolderMcpJson',16OpenWorkspaceMcp = 'workbench.mcp.openWorkspaceMcpJson',17BrowseResources = 'workbench.mcp.browseResources',18ConfigureSamplingModels = 'workbench.mcp.configureSamplingModels',19EditStoredInput = 'workbench.mcp.editStoredInput',20InstallFromActivation = 'workbench.mcp.installFromActivation',21ListServer = 'workbench.mcp.listServer',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',29ShowOutput = 'workbench.mcp.showOutput',30StartPromptForServer = 'workbench.mcp.startPromptForServer',31StartServer = 'workbench.mcp.startServer',32StopServer = 'workbench.mcp.stopServer',33}343536