src/vs/workbench/contrib/mcp/common/mcpDevMode.ts
213 LOC · 91 covered · 122 uncovered · 11 ranges · 111 concepts · 2 introducers · 74 tests
File neighbourhood
The centred file is linked to every concept that introduces one of its ranges, every test that runs code from the file, and the gray connector concepts standing between those tests and the file's own introducer concepts. Undirected links join concepts to every file where they introduce source and concepts to the tests they introduce; arrows show specialization between the displayed concepts and bridge only concepts omitted from this view. Concept colors match the source ranges below; connector concepts have no source color and are shown in gray.
Focused file, its introducer and connector concepts, their introduced files, and tests that run code from the file
In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the related-file, concept, and source links on this page.
Graph controls are ready.
Interactive rendering requires JavaScript and WebGL. Use the related-file, concept, and source links on this page while the interactive map is unavailable.
/*---------------------------------------------------------------------------------------------
mcpServer.ts ×62
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { equals as arraysEqual } from '../../../../base/common/arrays.js';
import { assertNever } from '../../../../base/common/assert.js';
import { Throttler } from '../../../../base/common/async.js';
import * as glob from '../../../../base/common/glob.js';
import { Disposable } from '../../../../base/common/lifecycle.js';
import { equals as objectsEqual } from '../../../../base/common/objects.js';
import { autorun, autorunDelta, derivedOpts } from '../../../../base/common/observable.js';
import { localize } from '../../../../nls.js';
import { ICommandService } from '../../../../platform/commands/common/commands.js';
import { FileSystemProviderCapabilities, IFileService } from '../../../../platform/files/common/files.js';
import { createDecorator } from '../../../../platform/instantiation/common/instantiation.js';
import { IWorkspaceContextService } from '../../../../platform/workspace/common/workspace.js';
import { IConfig, IDebugService, IDebugSessionOptions } from '../../debug/common/debug.js';
import { IMcpRegistry } from './mcpRegistryTypes.js';
import { IMcpServer, McpServerDefinition, McpServerLaunch, McpServerTransportType } from './mcpTypes.js';
export class McpDevModeServerAttache extends Disposable {
constructor(
fwdRef: { lastModeDebugged: boolean },
@IMcpRegistry registry: IMcpRegistry,
@IFileService fileService: IFileService,
@IWorkspaceContextService workspaceContextService: IWorkspaceContextService,
) {
super();
const workspaceFolder = server.readDefinitions().map(({ collection }) => collection?.presentation?.origin &&
workspaceContextService.getWorkspaceFolder(collection.presentation?.origin)?.uri);
const restart = async () => {
const lastDebugged = fwdRef.lastModeDebugged;
await server.stop();
await server.start({ debug: lastDebugged });
};
// 1. Auto-start the server, restart if entering debug mode
let didAutoStart = false;
this._register(autorun(reader => {
const defs = server.readDefinitions().read(reader);
if (!defs.collection || !defs.server || !defs.server.devMode) {
didAutoStart = false;
return;
}
// don't keep trying to start the server unless it's a new server or devmode is newly turned on
if (didAutoStart) {
return;
}
const delegates = registry.delegates.read(reader);
if (!delegates.some(d => d.canStart(defs.collection!, defs.server!))) {
return;
}
server.start();
didAutoStart = true;
const debugMode = server.readDefinitions().map(d => !!d.server?.devMode?.debug);
this._register(autorunDelta(debugMode, ({ lastValue, newValue }) => {
if (!!newValue && !objectsEqual(lastValue, newValue)) {
restart();
}
// 2. Watch for file changes
const watchObs = derivedOpts<string[] | undefined>({ equalsFn: arraysEqual }, reader => {
const def = server.readDefinitions().read(reader);
const watch = def.server?.devMode?.watch;
return typeof watch === 'string' ? [watch] : watch;
});
const restartScheduler = this._register(new Throttler());
this._register(autorun(reader => {
const pattern = watchObs.read(reader);
const wf = workspaceFolder.read(reader);
if (!pattern || !wf) {
return;
}
const includes = pattern.filter(p => !p.startsWith('!'));
const excludes = pattern.filter(p => p.startsWith('!')).map(p => p.slice(1));
reader.store.add(fileService.watch(wf, { includes, excludes, recursive: true }));
const ignoreCase = !fileService.hasCapability(wf, FileSystemProviderCapabilities.PathCaseSensitive);
const includeParse = includes.map(p => glob.parse({ base: wf.fsPath, pattern: p }, { ignoreCase }));
const excludeParse = excludes.map(p => glob.parse({ base: wf.fsPath, pattern: p }, { ignoreCase }));
reader.store.add(fileService.onDidFilesChange(e => {
for (const change of [e.rawAdded, e.rawDeleted, e.rawUpdated]) {
for (const uri of change) {
if (includeParse.some(i => i(uri.fsPath)) && !excludeParse.some(e => e(uri.fsPath))) {
restartScheduler.queue(restart);
break;
}
}
}
}));
}
export interface IMcpDevModeDebugging {
readonly _serviceBrand: undefined;
transform(definition: McpServerDefinition, launch: McpServerLaunch): Promise<McpServerLaunch>;
}
export const IMcpDevModeDebugging = createDecorator<IMcpDevModeDebugging>('mcpDevModeDebugging');
const DEBUG_HOST = '127.0.0.1';
export class McpDevModeDebugging implements IMcpDevModeDebugging {
declare readonly _serviceBrand: undefined;
constructor(
@IDebugService private readonly _debugService: IDebugService,
@ICommandService private readonly _commandService: ICommandService,
) { }
public async transform(definition: McpServerDefinition, launch: McpServerLaunch): Promise<McpServerLaunch> {
if (!definition.devMode?.debug || launch.type !== McpServerTransportType.Stdio) {
return launch;
}
const port = await this.getDebugPort();
const name = `MCP: ${definition.label}`; // for debugging
const options: IDebugSessionOptions = { startedByUser: false, suppressDebugView: true };
const commonConfig: Partial<IConfig> = {
internalConsoleOptions: 'neverOpen',
suppressMultipleSessionWarning: true,
};
switch (definition.devMode.debug.type) {
case 'node': {
if (!/node[0-9]*$/.test(launch.command)) {
throw new Error(localize('mcp.debug.nodeBinReq', 'MCP server must be launched with the "node" executable to enable debugging, but was launched with "{0}"', launch.command));
}
// We intentionally assert types as the DA has additional properties beyong IConfig
// eslint-disable-next-line local/code-no-dangerous-type-assertions
this._debugService.startDebugging(undefined, {
type: 'pwa-node',
request: 'attach',
name,
port,
host: DEBUG_HOST,
timeout: 30_000,
continueOnAttach: true,
...commonConfig,
} as IConfig, options);
return { ...launch, args: [`--inspect-brk=${DEBUG_HOST}:${port}`, ...launch.args] };
}
case 'debugpy': {
if (!/python[0-9.]*$/.test(launch.command)) {
throw new Error(localize('mcp.debug.pythonBinReq', 'MCP server must be launched with the "python" executable to enable debugging, but was launched with "{0}"', launch.command));
}
let command: string | undefined;
let args = ['--wait-for-client', '--connect', `${DEBUG_HOST}:${port}`, ...launch.args];
if (definition.devMode.debug.debugpyPath) {
command = definition.devMode.debug.debugpyPath;
} else {
try {
// The Python debugger exposes a command to get its bundle debugpy module path. Use that if it's available.
const debugPyPath = await this._commandService.executeCommand<string | undefined>('python.getDebugpyPackagePath');
if (debugPyPath) {
command = launch.command;
args = [debugPyPath, ...args];
}
} catch {
// ignored, no Python debugger extension installed or an error therein
}
}
if (!command) {
command = 'debugpy';
}
await Promise.race([
// eslint-disable-next-line local/code-no-dangerous-type-assertions
this._debugService.startDebugging(undefined, {
type: 'debugpy',
name,
request: 'attach',
listen: {
host: DEBUG_HOST,
port
},
...commonConfig,
} as IConfig, options),
this.ensureListeningOnPort(port)
]);
return { ...launch, command, args };
}
default:
assertNever(definition.devMode.debug, `Unknown debug type ${JSON.stringify(definition.devMode.debug)}`);
}
}
protected ensureListeningOnPort(port: number): Promise<void> {
return Promise.resolve();
}
protected getDebugPort() {
return Promise.resolve(9230);
}