@codingame/monaco-vscode-mcp-service-override 26.2.2 → 28.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +8 -2
- package/package.json +2 -2
- package/vscode/src/vs/base/common/jsonRpcProtocol.d.ts +66 -0
- package/vscode/src/vs/base/common/jsonRpcProtocol.js +216 -0
- package/vscode/src/vs/platform/mcp/common/allowedMcpServersService.js +1 -1
- package/vscode/src/vs/platform/mcp/common/mcpGalleryService.js +2 -2
- package/vscode/src/vs/platform/mcp/common/mcpGateway.d.ts +39 -0
- package/vscode/src/vs/platform/mcp/common/mcpGateway.js +6 -0
- package/vscode/src/vs/platform/mcp/common/mcpResourceScannerService.d.ts +3 -1
- package/vscode/src/vs/platform/mcp/common/mcpResourceScannerService.js +12 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcp.contribution.js +15 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpAddContextContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommands.js +58 -58
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpElicitationService.js +27 -28
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpGatewayService.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpGatewayService.js +51 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpGatewayToolBrokerContribution.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpGatewayToolBrokerContribution.js +16 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpLanguageFeatures.js +18 -18
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpMigration.js +4 -4
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpResourceQuickAccess.js +8 -8
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServersView.d.ts +4 -1
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServersView.js +42 -24
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpWorkbenchService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpWorkbenchService.js +13 -12
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/extensionMcpDiscovery.js +4 -4
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/installedMcpServersDiscovery.js +3 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/nativeMcpDiscoveryAbstract.js +1 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/nativeMcpDiscoveryAdapters.js +2 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/pluginMcpDiscovery.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/pluginMcpDiscovery.js +106 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpContextKeys.js +4 -4
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayToolBrokerChannel.d.ts +39 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayToolBrokerChannel.js +302 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpLanguageModelToolContribution.js +25 -17
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistry.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistry.js +27 -18
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpSamplingLog.js +1 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpSamplingService.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpSamplingService.js +28 -18
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpSandboxService.d.ts +47 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpSandboxService.js +385 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpServerConnection.d.ts +6 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpServerConnection.js +61 -3
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpServerRequestHandler.d.ts +4 -20
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpServerRequestHandler.js +95 -145
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpService.js +9 -9
- package/vscode/src/vs/workbench/services/mcp/browser/mcpWorkbenchManagementService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/mcp/browser/mcpWorkbenchManagementService.js +2 -2
- package/vscode/src/vs/platform/mcp/common/mcpManagementIpc.d.ts +0 -42
- package/vscode/src/vs/platform/mcp/common/mcpManagementIpc.js +0 -105
- package/vscode/src/vs/platform/mcp/common/mcpManagementService.d.ts +0 -130
- package/vscode/src/vs/platform/mcp/common/mcpManagementService.js +0 -665
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.d.ts +0 -259
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +0 -1225
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.d.ts +0 -72
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.js +0 -996
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.d.ts +0 -17
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.js +0 -49
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.d.ts +0 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.js +0 -12
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.d.ts +0 -88
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.js +0 -464
- package/vscode/src/vs/workbench/contrib/mcp/browser/media/mcpServerEditor.css +0 -94
- package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.d.ts +0 -87
- package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.js +0 -702
|
@@ -1,259 +0,0 @@
|
|
|
1
|
-
import { ActionViewItem, IActionViewItemOptions } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionViewItems";
|
|
2
|
-
import { Action, IAction, IActionChangeEvent } from "@codingame/monaco-vscode-api/vscode/vs/base/common/actions";
|
|
3
|
-
import { Emitter, Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
4
|
-
import { IMarkdownString } from "@codingame/monaco-vscode-api/vscode/vs/base/common/htmlContent";
|
|
5
|
-
import { ThemeIcon } from "@codingame/monaco-vscode-api/vscode/vs/base/common/themables";
|
|
6
|
-
import { ICommandService } from "@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service";
|
|
7
|
-
import { IContextMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service";
|
|
8
|
-
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
9
|
-
import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
10
|
-
import { IAuthenticationService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/authentication/common/authentication.service";
|
|
11
|
-
import { IAuthenticationQueryService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/authentication/common/authenticationQuery.service";
|
|
12
|
-
import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
13
|
-
import { IMcpRegistry } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service";
|
|
14
|
-
import { IMcpServerContainer, IWorkbenchMcpServer } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/mcp/common/mcpTypes";
|
|
15
|
-
import { IMcpSamplingService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/mcp/common/mcpTypes.service";
|
|
16
|
-
import { IMcpWorkbenchService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/mcp/common/mcpTypes.service";
|
|
17
|
-
import { IMcpService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/mcp/common/mcpTypes.service";
|
|
18
|
-
import { IWorkspaceContextService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service";
|
|
19
|
-
import { IQuickInputService } from "@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service";
|
|
20
|
-
import { IWorkbenchEnvironmentService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/environment/common/environmentService.service";
|
|
21
|
-
import { ILabelService } from "@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service";
|
|
22
|
-
import { ExtensionAction } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/extensions/browser/extensionsActions";
|
|
23
|
-
import { ActionWithDropdownActionViewItem, IActionWithDropdownActionViewItemOptions } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/dropdown/dropdownActionViewItem";
|
|
24
|
-
import { IContextMenuProvider } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/contextmenu";
|
|
25
|
-
export interface IMcpServerActionChangeEvent extends IActionChangeEvent {
|
|
26
|
-
readonly hidden?: boolean;
|
|
27
|
-
readonly menuActions?: IAction[];
|
|
28
|
-
}
|
|
29
|
-
export declare abstract class McpServerAction extends Action implements IMcpServerContainer {
|
|
30
|
-
protected _onDidChange: Emitter<IMcpServerActionChangeEvent>;
|
|
31
|
-
get onDidChange(): Event<IMcpServerActionChangeEvent>;
|
|
32
|
-
static readonly EXTENSION_ACTION_CLASS = "extension-action";
|
|
33
|
-
static readonly TEXT_ACTION_CLASS: string;
|
|
34
|
-
static readonly LABEL_ACTION_CLASS: string;
|
|
35
|
-
static readonly PROMINENT_LABEL_ACTION_CLASS: string;
|
|
36
|
-
static readonly ICON_ACTION_CLASS: string;
|
|
37
|
-
private _hidden;
|
|
38
|
-
get hidden(): boolean;
|
|
39
|
-
set hidden(hidden: boolean);
|
|
40
|
-
protected _setEnabled(value: boolean): void;
|
|
41
|
-
protected hideOnDisabled: boolean;
|
|
42
|
-
private _mcpServer;
|
|
43
|
-
get mcpServer(): IWorkbenchMcpServer | null;
|
|
44
|
-
set mcpServer(mcpServer: IWorkbenchMcpServer | null);
|
|
45
|
-
abstract update(): void;
|
|
46
|
-
}
|
|
47
|
-
export declare class ButtonWithDropDownExtensionAction extends McpServerAction {
|
|
48
|
-
private readonly actionsGroups;
|
|
49
|
-
private primaryAction;
|
|
50
|
-
readonly menuActionClassNames: string[];
|
|
51
|
-
private _menuActions;
|
|
52
|
-
get menuActions(): IAction[];
|
|
53
|
-
get mcpServer(): IWorkbenchMcpServer | null;
|
|
54
|
-
set mcpServer(mcpServer: IWorkbenchMcpServer | null);
|
|
55
|
-
protected readonly actions: McpServerAction[];
|
|
56
|
-
constructor(id: string, clazz: string, actionsGroups: McpServerAction[][]);
|
|
57
|
-
update(donotUpdateActions?: boolean): void;
|
|
58
|
-
run(): Promise<void>;
|
|
59
|
-
protected getLabel(action: ExtensionAction): string;
|
|
60
|
-
}
|
|
61
|
-
export declare class ButtonWithDropdownExtensionActionViewItem extends ActionWithDropdownActionViewItem {
|
|
62
|
-
constructor(action: ButtonWithDropDownExtensionAction, options: IActionViewItemOptions & IActionWithDropdownActionViewItemOptions, contextMenuProvider: IContextMenuProvider);
|
|
63
|
-
render(container: HTMLElement): void;
|
|
64
|
-
protected updateClass(): void;
|
|
65
|
-
}
|
|
66
|
-
export declare abstract class DropDownAction extends McpServerAction {
|
|
67
|
-
protected instantiationService: IInstantiationService;
|
|
68
|
-
constructor(id: string, label: string, cssClass: string, enabled: boolean, instantiationService: IInstantiationService);
|
|
69
|
-
private _actionViewItem;
|
|
70
|
-
createActionViewItem(options: IActionViewItemOptions): DropDownExtensionActionViewItem;
|
|
71
|
-
run(actionGroups: IAction[][]): Promise<void>;
|
|
72
|
-
}
|
|
73
|
-
export declare class DropDownExtensionActionViewItem extends ActionViewItem {
|
|
74
|
-
private readonly contextMenuService;
|
|
75
|
-
constructor(action: IAction, options: IActionViewItemOptions, contextMenuService: IContextMenuService);
|
|
76
|
-
showMenu(menuActionGroups: IAction[][]): void;
|
|
77
|
-
private getActions;
|
|
78
|
-
}
|
|
79
|
-
export declare class InstallAction extends McpServerAction {
|
|
80
|
-
private readonly open;
|
|
81
|
-
private readonly mcpWorkbenchService;
|
|
82
|
-
private readonly telemetryService;
|
|
83
|
-
private readonly mcpService;
|
|
84
|
-
static readonly CLASS: string;
|
|
85
|
-
private static readonly HIDE;
|
|
86
|
-
constructor(open: boolean, mcpWorkbenchService: IMcpWorkbenchService, telemetryService: ITelemetryService, mcpService: IMcpService);
|
|
87
|
-
update(): void;
|
|
88
|
-
run(): Promise<void>;
|
|
89
|
-
}
|
|
90
|
-
export declare class InstallInWorkspaceAction extends McpServerAction {
|
|
91
|
-
private readonly open;
|
|
92
|
-
private readonly mcpWorkbenchService;
|
|
93
|
-
private readonly workspaceService;
|
|
94
|
-
private readonly quickInputService;
|
|
95
|
-
private readonly telemetryService;
|
|
96
|
-
private readonly mcpService;
|
|
97
|
-
static readonly CLASS: string;
|
|
98
|
-
private static readonly HIDE;
|
|
99
|
-
constructor(open: boolean, mcpWorkbenchService: IMcpWorkbenchService, workspaceService: IWorkspaceContextService, quickInputService: IQuickInputService, telemetryService: ITelemetryService, mcpService: IMcpService);
|
|
100
|
-
update(): void;
|
|
101
|
-
run(): Promise<void>;
|
|
102
|
-
private getConfigurationTarget;
|
|
103
|
-
}
|
|
104
|
-
export declare class InstallInRemoteAction extends McpServerAction {
|
|
105
|
-
private readonly open;
|
|
106
|
-
private readonly mcpWorkbenchService;
|
|
107
|
-
private readonly environmentService;
|
|
108
|
-
private readonly telemetryService;
|
|
109
|
-
private readonly labelService;
|
|
110
|
-
private readonly mcpService;
|
|
111
|
-
static readonly CLASS: string;
|
|
112
|
-
private static readonly HIDE;
|
|
113
|
-
constructor(open: boolean, mcpWorkbenchService: IMcpWorkbenchService, environmentService: IWorkbenchEnvironmentService, telemetryService: ITelemetryService, labelService: ILabelService, mcpService: IMcpService);
|
|
114
|
-
update(): void;
|
|
115
|
-
run(): Promise<void>;
|
|
116
|
-
}
|
|
117
|
-
export declare class InstallingLabelAction extends McpServerAction {
|
|
118
|
-
private static readonly LABEL;
|
|
119
|
-
private static readonly CLASS;
|
|
120
|
-
constructor();
|
|
121
|
-
update(): void;
|
|
122
|
-
}
|
|
123
|
-
export declare class UninstallAction extends McpServerAction {
|
|
124
|
-
private readonly mcpWorkbenchService;
|
|
125
|
-
static readonly CLASS: string;
|
|
126
|
-
private static readonly HIDE;
|
|
127
|
-
constructor(mcpWorkbenchService: IMcpWorkbenchService);
|
|
128
|
-
update(): void;
|
|
129
|
-
run(): Promise<void>;
|
|
130
|
-
}
|
|
131
|
-
export declare function getContextMenuActions(mcpServer: IWorkbenchMcpServer, isEditorAction: boolean, instantiationService: IInstantiationService): IAction[][];
|
|
132
|
-
export declare class ManageMcpServerAction extends DropDownAction {
|
|
133
|
-
private readonly isEditorAction;
|
|
134
|
-
static readonly ID = "mcpServer.manage";
|
|
135
|
-
private static readonly Class;
|
|
136
|
-
private static readonly HideManageExtensionClass;
|
|
137
|
-
constructor(isEditorAction: boolean, instantiationService: IInstantiationService);
|
|
138
|
-
run(): Promise<void>;
|
|
139
|
-
update(): void;
|
|
140
|
-
}
|
|
141
|
-
export declare class StartServerAction extends McpServerAction {
|
|
142
|
-
private readonly mcpService;
|
|
143
|
-
static readonly CLASS: string;
|
|
144
|
-
private static readonly HIDE;
|
|
145
|
-
constructor(mcpService: IMcpService);
|
|
146
|
-
update(): void;
|
|
147
|
-
run(): Promise<void>;
|
|
148
|
-
private getServer;
|
|
149
|
-
}
|
|
150
|
-
export declare class StopServerAction extends McpServerAction {
|
|
151
|
-
private readonly mcpService;
|
|
152
|
-
static readonly CLASS: string;
|
|
153
|
-
private static readonly HIDE;
|
|
154
|
-
constructor(mcpService: IMcpService);
|
|
155
|
-
update(): void;
|
|
156
|
-
run(): Promise<void>;
|
|
157
|
-
private getServer;
|
|
158
|
-
}
|
|
159
|
-
export declare class RestartServerAction extends McpServerAction {
|
|
160
|
-
private readonly mcpService;
|
|
161
|
-
static readonly CLASS: string;
|
|
162
|
-
private static readonly HIDE;
|
|
163
|
-
constructor(mcpService: IMcpService);
|
|
164
|
-
update(): void;
|
|
165
|
-
run(): Promise<void>;
|
|
166
|
-
private getServer;
|
|
167
|
-
}
|
|
168
|
-
export declare class AuthServerAction extends McpServerAction {
|
|
169
|
-
private readonly mcpService;
|
|
170
|
-
private readonly _authenticationQueryService;
|
|
171
|
-
private readonly _authenticationService;
|
|
172
|
-
static readonly CLASS: string;
|
|
173
|
-
private static readonly HIDE;
|
|
174
|
-
private static readonly SIGN_OUT;
|
|
175
|
-
private static readonly DISCONNECT;
|
|
176
|
-
private _accountQuery;
|
|
177
|
-
constructor(mcpService: IMcpService, _authenticationQueryService: IAuthenticationQueryService, _authenticationService: IAuthenticationService);
|
|
178
|
-
update(): void;
|
|
179
|
-
run(): Promise<void>;
|
|
180
|
-
private getServer;
|
|
181
|
-
private getAccountQuery;
|
|
182
|
-
}
|
|
183
|
-
export declare class ShowServerOutputAction extends McpServerAction {
|
|
184
|
-
private readonly mcpService;
|
|
185
|
-
static readonly CLASS: string;
|
|
186
|
-
private static readonly HIDE;
|
|
187
|
-
constructor(mcpService: IMcpService);
|
|
188
|
-
update(): void;
|
|
189
|
-
run(): Promise<void>;
|
|
190
|
-
private getServer;
|
|
191
|
-
}
|
|
192
|
-
export declare class ShowServerConfigurationAction extends McpServerAction {
|
|
193
|
-
private readonly mcpWorkbenchService;
|
|
194
|
-
static readonly CLASS: string;
|
|
195
|
-
private static readonly HIDE;
|
|
196
|
-
constructor(mcpWorkbenchService: IMcpWorkbenchService);
|
|
197
|
-
update(): void;
|
|
198
|
-
run(): Promise<void>;
|
|
199
|
-
}
|
|
200
|
-
export declare class ShowServerJsonConfigurationAction extends McpServerAction {
|
|
201
|
-
private readonly mcpService;
|
|
202
|
-
private readonly mcpRegistry;
|
|
203
|
-
private readonly editorService;
|
|
204
|
-
static readonly CLASS: string;
|
|
205
|
-
private static readonly HIDE;
|
|
206
|
-
constructor(mcpService: IMcpService, mcpRegistry: IMcpRegistry, editorService: IEditorService);
|
|
207
|
-
update(): void;
|
|
208
|
-
run(): Promise<void>;
|
|
209
|
-
private getConfigurationTarget;
|
|
210
|
-
}
|
|
211
|
-
export declare class ConfigureModelAccessAction extends McpServerAction {
|
|
212
|
-
private readonly mcpService;
|
|
213
|
-
private readonly commandService;
|
|
214
|
-
static readonly CLASS: string;
|
|
215
|
-
private static readonly HIDE;
|
|
216
|
-
constructor(mcpService: IMcpService, commandService: ICommandService);
|
|
217
|
-
update(): void;
|
|
218
|
-
run(): Promise<void>;
|
|
219
|
-
private getServer;
|
|
220
|
-
}
|
|
221
|
-
export declare class ShowSamplingRequestsAction extends McpServerAction {
|
|
222
|
-
private readonly mcpService;
|
|
223
|
-
private readonly samplingService;
|
|
224
|
-
private readonly editorService;
|
|
225
|
-
static readonly CLASS: string;
|
|
226
|
-
private static readonly HIDE;
|
|
227
|
-
constructor(mcpService: IMcpService, samplingService: IMcpSamplingService, editorService: IEditorService);
|
|
228
|
-
update(): void;
|
|
229
|
-
run(): Promise<void>;
|
|
230
|
-
private getServer;
|
|
231
|
-
}
|
|
232
|
-
export declare class BrowseResourcesAction extends McpServerAction {
|
|
233
|
-
private readonly mcpService;
|
|
234
|
-
private readonly commandService;
|
|
235
|
-
static readonly CLASS: string;
|
|
236
|
-
private static readonly HIDE;
|
|
237
|
-
constructor(mcpService: IMcpService, commandService: ICommandService);
|
|
238
|
-
update(): void;
|
|
239
|
-
run(): Promise<void>;
|
|
240
|
-
private getServer;
|
|
241
|
-
}
|
|
242
|
-
export type McpServerStatus = {
|
|
243
|
-
readonly message: IMarkdownString;
|
|
244
|
-
readonly icon?: ThemeIcon;
|
|
245
|
-
};
|
|
246
|
-
export declare class McpServerStatusAction extends McpServerAction {
|
|
247
|
-
private readonly mcpWorkbenchService;
|
|
248
|
-
private readonly commandService;
|
|
249
|
-
private static readonly CLASS;
|
|
250
|
-
private _status;
|
|
251
|
-
get status(): McpServerStatus[];
|
|
252
|
-
private readonly _onDidChangeStatus;
|
|
253
|
-
readonly onDidChangeStatus: Event<void>;
|
|
254
|
-
constructor(mcpWorkbenchService: IMcpWorkbenchService, commandService: ICommandService);
|
|
255
|
-
update(): void;
|
|
256
|
-
private computeAndUpdateStatus;
|
|
257
|
-
private updateStatus;
|
|
258
|
-
run(): Promise<void>;
|
|
259
|
-
}
|