@codingame/monaco-vscode-mcp-service-override 34.1.3 → 35.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/package.json +2 -2
- 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/workbench/contrib/mcp/browser/mcp.contribution.js +6 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpAddContextContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommands.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommands.js +247 -73
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpElicitationService.js +25 -25
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpLanguageFeatures.js +23 -23
- 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/mcpServerEditor.js +37 -37
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServersView.js +17 -17
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpWorkbenchService.js +10 -10
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/extensionMcpDiscovery.js +4 -4
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/installedMcpServersDiscovery.js +2 -2
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/nativeMcpDiscoveryAbstract.js +1 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpContextKeys.js +4 -4
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpLanguageModelToolContribution.js +8 -6
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistry.js +13 -13
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpSamplingLog.js +1 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpSamplingService.js +11 -11
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpSandboxService.js +3 -3
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpServerConnection.js +3 -3
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpService.d.ts +4 -9
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpService.js +5 -48
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpAccessService.d.ts +12 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpAccessService.js +3 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpService.js +9 -9
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/pluginMcpDiscovery.d.ts +0 -15
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/pluginMcpDiscovery.js +0 -118
|
@@ -27,8 +27,8 @@ import { autorun } from '@codingame/monaco-vscode-api/vscode/vs/base/common/obse
|
|
|
27
27
|
|
|
28
28
|
const noneItem = {
|
|
29
29
|
id: undefined,
|
|
30
|
-
label: ( localize(
|
|
31
|
-
description: ( localize(
|
|
30
|
+
label: ( localize(11910, "None")),
|
|
31
|
+
description: ( localize(11911, "No selection")),
|
|
32
32
|
alwaysShow: true
|
|
33
33
|
};
|
|
34
34
|
function isFormElicitation(params) {
|
|
@@ -117,11 +117,11 @@ let McpElicitationService = class McpElicitationService {
|
|
|
117
117
|
}
|
|
118
118
|
const handle = this._notificationService.notify({
|
|
119
119
|
message: elicitation.message,
|
|
120
|
-
source: ( localize(
|
|
120
|
+
source: ( localize(11912, "MCP Server ({0})", server.definition.label)),
|
|
121
121
|
severity: Severity.Info,
|
|
122
122
|
actions: {
|
|
123
|
-
primary: [store.add(( new Action("mcp.elicit.give", ( localize(
|
|
124
|
-
secondary: [store.add(( new Action("mcp.elicit.cancel", ( localize(
|
|
123
|
+
primary: [store.add(( new Action("mcp.elicit.give", ( localize(11913, "Respond")), undefined, true, () => resolve(this._doElicitForm(elicitation, token)))))],
|
|
124
|
+
secondary: [store.add(( new Action("mcp.elicit.cancel", ( localize(11914, "Cancel")), undefined, true, () => resolve({
|
|
125
125
|
action: "decline"
|
|
126
126
|
}))))]
|
|
127
127
|
}
|
|
@@ -163,7 +163,7 @@ let McpElicitationService = class McpElicitationService {
|
|
|
163
163
|
if (chatModel instanceof ChatModel) {
|
|
164
164
|
const request = chatModel.getRequests().at(-1);
|
|
165
165
|
if (request) {
|
|
166
|
-
const part = ( new ChatElicitationRequestPart(( localize(
|
|
166
|
+
const part = ( new ChatElicitationRequestPart(( localize(11915, "Authorization Required")), ( new MarkdownString()).appendText(elicitation.message).appendMarkdown("\n\n" + ( localize(11916, "Open this URL?"))).appendCodeblock("", elicitation.url), ( localize(11917, "{0} (MCP Server)", server.definition.label)), ( localize(11918, "Open {0}", ( URI.parse(elicitation.url)).authority)), ( localize(11919, "Cancel")), async () => {
|
|
167
167
|
const result = await this._doElicitUrl(elicitation, token);
|
|
168
168
|
resolve(result);
|
|
169
169
|
completePromise.then(() => part.hide());
|
|
@@ -178,12 +178,12 @@ let McpElicitationService = class McpElicitationService {
|
|
|
178
178
|
}
|
|
179
179
|
} else {
|
|
180
180
|
const handle = this._notificationService.notify({
|
|
181
|
-
message: elicitation.message + " " + ( localize(
|
|
182
|
-
source: ( localize(
|
|
181
|
+
message: elicitation.message + " " + ( localize(11920, "This will open {0}", elicitation.url)),
|
|
182
|
+
source: ( localize(11912, "MCP Server ({0})", server.definition.label)),
|
|
183
183
|
severity: Severity.Info,
|
|
184
184
|
actions: {
|
|
185
|
-
primary: [store.add(( new Action("mcp.elicit.url.open2", ( localize(
|
|
186
|
-
secondary: [store.add(( new Action("mcp.elicit.cancel", ( localize(
|
|
185
|
+
primary: [store.add(( new Action("mcp.elicit.url.open2", ( localize(11921, "Open URL")), undefined, true, () => resolve(this._doElicitUrl(elicitation, token)))))],
|
|
186
|
+
secondary: [store.add(( new Action("mcp.elicit.cancel", ( localize(11914, "Cancel")), undefined, true, () => resolve({
|
|
187
187
|
action: "decline"
|
|
188
188
|
}))))]
|
|
189
189
|
}
|
|
@@ -325,7 +325,7 @@ let McpElicitationService = class McpElicitationService {
|
|
|
325
325
|
_getFieldPlaceholder(schema, required) {
|
|
326
326
|
let placeholder = schema.description || "";
|
|
327
327
|
if (!required) {
|
|
328
|
-
placeholder = placeholder ? `${placeholder} (${( localize(
|
|
328
|
+
placeholder = placeholder ? `${placeholder} (${( localize(11922, "Optional"))})` : ( localize(11922, "Optional"));
|
|
329
329
|
}
|
|
330
330
|
return placeholder;
|
|
331
331
|
}
|
|
@@ -434,7 +434,7 @@ let McpElicitationService = class McpElicitationService {
|
|
|
434
434
|
items.push({
|
|
435
435
|
id: "$default",
|
|
436
436
|
label: `${schema.default}`,
|
|
437
|
-
description: ( localize(
|
|
437
|
+
description: ( localize(11923, "Default value"))
|
|
438
438
|
});
|
|
439
439
|
}
|
|
440
440
|
}
|
|
@@ -503,13 +503,13 @@ let McpElicitationService = class McpElicitationService {
|
|
|
503
503
|
if (schema.minLength && value.length < schema.minLength) {
|
|
504
504
|
return {
|
|
505
505
|
isValid: false,
|
|
506
|
-
message: ( localize(
|
|
506
|
+
message: ( localize(11924, "Minimum length is {0}", schema.minLength))
|
|
507
507
|
};
|
|
508
508
|
}
|
|
509
509
|
if (schema.maxLength && value.length > schema.maxLength) {
|
|
510
510
|
return {
|
|
511
511
|
isValid: false,
|
|
512
|
-
message: ( localize(
|
|
512
|
+
message: ( localize(11925, "Maximum length is {0}", schema.maxLength))
|
|
513
513
|
};
|
|
514
514
|
}
|
|
515
515
|
if (schema.format) {
|
|
@@ -530,7 +530,7 @@ let McpElicitationService = class McpElicitationService {
|
|
|
530
530
|
isValid: true
|
|
531
531
|
} : {
|
|
532
532
|
isValid: false,
|
|
533
|
-
message: ( localize(
|
|
533
|
+
message: ( localize(11926, "Please enter a valid email address"))
|
|
534
534
|
};
|
|
535
535
|
case "uri":
|
|
536
536
|
if (URL.canParse(value)) {
|
|
@@ -540,7 +540,7 @@ let McpElicitationService = class McpElicitationService {
|
|
|
540
540
|
} else {
|
|
541
541
|
return {
|
|
542
542
|
isValid: false,
|
|
543
|
-
message: ( localize(
|
|
543
|
+
message: ( localize(11927, "Please enter a valid URI"))
|
|
544
544
|
};
|
|
545
545
|
}
|
|
546
546
|
case "date":
|
|
@@ -549,7 +549,7 @@ let McpElicitationService = class McpElicitationService {
|
|
|
549
549
|
if (!dateRegex.test(value)) {
|
|
550
550
|
return {
|
|
551
551
|
isValid: false,
|
|
552
|
-
message: ( localize(
|
|
552
|
+
message: ( localize(11928, "Please enter a valid date (YYYY-MM-DD)"))
|
|
553
553
|
};
|
|
554
554
|
}
|
|
555
555
|
const date = ( new Date(value));
|
|
@@ -557,7 +557,7 @@ let McpElicitationService = class McpElicitationService {
|
|
|
557
557
|
isValid: true
|
|
558
558
|
} : {
|
|
559
559
|
isValid: false,
|
|
560
|
-
message: ( localize(
|
|
560
|
+
message: ( localize(11928, "Please enter a valid date (YYYY-MM-DD)"))
|
|
561
561
|
};
|
|
562
562
|
}
|
|
563
563
|
case "date-time":
|
|
@@ -567,7 +567,7 @@ let McpElicitationService = class McpElicitationService {
|
|
|
567
567
|
isValid: true
|
|
568
568
|
} : {
|
|
569
569
|
isValid: false,
|
|
570
|
-
message: ( localize(
|
|
570
|
+
message: ( localize(11929, "Please enter a valid date-time"))
|
|
571
571
|
};
|
|
572
572
|
}
|
|
573
573
|
default:
|
|
@@ -581,25 +581,25 @@ let McpElicitationService = class McpElicitationService {
|
|
|
581
581
|
if (isNaN(parsed)) {
|
|
582
582
|
return {
|
|
583
583
|
isValid: false,
|
|
584
|
-
message: ( localize(
|
|
584
|
+
message: ( localize(11930, "Please enter a valid number"))
|
|
585
585
|
};
|
|
586
586
|
}
|
|
587
587
|
if (schema.type === "integer" && !Number.isInteger(parsed)) {
|
|
588
588
|
return {
|
|
589
589
|
isValid: false,
|
|
590
|
-
message: ( localize(
|
|
590
|
+
message: ( localize(11931, "Please enter a valid integer"))
|
|
591
591
|
};
|
|
592
592
|
}
|
|
593
593
|
if (schema.minimum !== undefined && parsed < schema.minimum) {
|
|
594
594
|
return {
|
|
595
595
|
isValid: false,
|
|
596
|
-
message: ( localize(
|
|
596
|
+
message: ( localize(11932, "Minimum value is {0}", schema.minimum))
|
|
597
597
|
};
|
|
598
598
|
}
|
|
599
599
|
if (schema.maximum !== undefined && parsed > schema.maximum) {
|
|
600
600
|
return {
|
|
601
601
|
isValid: false,
|
|
602
|
-
message: ( localize(
|
|
602
|
+
message: ( localize(11933, "Maximum value is {0}", schema.maximum))
|
|
603
603
|
};
|
|
604
604
|
}
|
|
605
605
|
return {
|
|
@@ -628,11 +628,11 @@ let McpElicitationService = class McpElicitationService {
|
|
|
628
628
|
allowFreeformInput: false,
|
|
629
629
|
options: [{
|
|
630
630
|
id: "true",
|
|
631
|
-
label: ( localize(
|
|
631
|
+
label: ( localize(11934, "True")),
|
|
632
632
|
value: "true"
|
|
633
633
|
}, {
|
|
634
634
|
id: "false",
|
|
635
|
-
label: ( localize(
|
|
635
|
+
label: ( localize(11935, "False")),
|
|
636
636
|
value: "false"
|
|
637
637
|
}],
|
|
638
638
|
defaultValue: schema.default !== undefined ? String(schema.default) : undefined
|
|
@@ -134,7 +134,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
134
134
|
diagnostics.push({
|
|
135
135
|
severity: MarkerSeverity.Warning,
|
|
136
136
|
message: ( localize(
|
|
137
|
-
|
|
137
|
+
11936,
|
|
138
138
|
"Variable `{0}` not found, did you mean ${{1}}?",
|
|
139
139
|
name,
|
|
140
140
|
getClosestMatchingVariable(name) + (arg ? `:${arg}` : "")
|
|
@@ -198,7 +198,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
198
198
|
range,
|
|
199
199
|
command: {
|
|
200
200
|
id: McpCommandIds.ServerOptions,
|
|
201
|
-
title: "$(circle-slash) " + ( localize(
|
|
201
|
+
title: "$(circle-slash) " + ( localize(11937, "Disabled")),
|
|
202
202
|
arguments: [server.definition.id]
|
|
203
203
|
}
|
|
204
204
|
});
|
|
@@ -212,14 +212,14 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
212
212
|
range,
|
|
213
213
|
command: {
|
|
214
214
|
id: McpCommandIds.ShowOutput,
|
|
215
|
-
title: "$(error) " + ( localize(
|
|
215
|
+
title: "$(error) " + ( localize(11938, "Error")),
|
|
216
216
|
arguments: [server.definition.id]
|
|
217
217
|
}
|
|
218
218
|
}, {
|
|
219
219
|
range,
|
|
220
220
|
command: {
|
|
221
221
|
id: McpCommandIds.RestartServer,
|
|
222
|
-
title: ( localize(
|
|
222
|
+
title: ( localize(11939, "Restart")),
|
|
223
223
|
arguments: [server.definition.id, {
|
|
224
224
|
autoTrustChanges: true
|
|
225
225
|
}]
|
|
@@ -230,7 +230,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
230
230
|
range,
|
|
231
231
|
command: {
|
|
232
232
|
id: McpCommandIds.RestartServer,
|
|
233
|
-
title: ( localize(
|
|
233
|
+
title: ( localize(11940, "Debug")),
|
|
234
234
|
arguments: [server.definition.id, {
|
|
235
235
|
debug: true,
|
|
236
236
|
autoTrustChanges: true
|
|
@@ -244,14 +244,14 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
244
244
|
range,
|
|
245
245
|
command: {
|
|
246
246
|
id: McpCommandIds.ShowOutput,
|
|
247
|
-
title: "$(loading~spin) " + ( localize(
|
|
247
|
+
title: "$(loading~spin) " + ( localize(11941, "Starting")),
|
|
248
248
|
arguments: [server.definition.id]
|
|
249
249
|
}
|
|
250
250
|
}, {
|
|
251
251
|
range,
|
|
252
252
|
command: {
|
|
253
253
|
id: McpCommandIds.StopServer,
|
|
254
|
-
title: ( localize(
|
|
254
|
+
title: ( localize(11942, "Cancel")),
|
|
255
255
|
arguments: [server.definition.id]
|
|
256
256
|
}
|
|
257
257
|
});
|
|
@@ -261,21 +261,21 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
261
261
|
range,
|
|
262
262
|
command: {
|
|
263
263
|
id: McpCommandIds.ShowOutput,
|
|
264
|
-
title: "$(check) " + ( localize(
|
|
264
|
+
title: "$(check) " + ( localize(11943, "Running")),
|
|
265
265
|
arguments: [server.definition.id]
|
|
266
266
|
}
|
|
267
267
|
}, {
|
|
268
268
|
range,
|
|
269
269
|
command: {
|
|
270
270
|
id: McpCommandIds.StopServer,
|
|
271
|
-
title: ( localize(
|
|
271
|
+
title: ( localize(11944, "Stop")),
|
|
272
272
|
arguments: [server.definition.id]
|
|
273
273
|
}
|
|
274
274
|
}, {
|
|
275
275
|
range,
|
|
276
276
|
command: {
|
|
277
277
|
id: McpCommandIds.RestartServer,
|
|
278
|
-
title: ( localize(
|
|
278
|
+
title: ( localize(11939, "Restart")),
|
|
279
279
|
arguments: [server.definition.id, {
|
|
280
280
|
autoTrustChanges: true
|
|
281
281
|
}]
|
|
@@ -286,7 +286,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
286
286
|
range,
|
|
287
287
|
command: {
|
|
288
288
|
id: McpCommandIds.RestartServer,
|
|
289
|
-
title: ( localize(
|
|
289
|
+
title: ( localize(11940, "Debug")),
|
|
290
290
|
arguments: [server.definition.id, {
|
|
291
291
|
autoTrustChanges: true,
|
|
292
292
|
debug: true
|
|
@@ -300,7 +300,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
300
300
|
range,
|
|
301
301
|
command: {
|
|
302
302
|
id: McpCommandIds.StartServer,
|
|
303
|
-
title: "$(debug-start) " + ( localize(
|
|
303
|
+
title: "$(debug-start) " + ( localize(11945, "Start")),
|
|
304
304
|
arguments: [server.definition.id, {
|
|
305
305
|
autoTrustChanges: true
|
|
306
306
|
}]
|
|
@@ -311,7 +311,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
311
311
|
range,
|
|
312
312
|
command: {
|
|
313
313
|
id: McpCommandIds.StartServer,
|
|
314
|
-
title: ( localize(
|
|
314
|
+
title: ( localize(11940, "Debug")),
|
|
315
315
|
arguments: [server.definition.id, {
|
|
316
316
|
autoTrustChanges: true,
|
|
317
317
|
debug: true
|
|
@@ -327,7 +327,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
327
327
|
range,
|
|
328
328
|
command: {
|
|
329
329
|
id: "",
|
|
330
|
-
title: ( localize(
|
|
330
|
+
title: ( localize(11946, "{0} tools", toolCount))
|
|
331
331
|
}
|
|
332
332
|
});
|
|
333
333
|
}
|
|
@@ -337,7 +337,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
337
337
|
range,
|
|
338
338
|
command: {
|
|
339
339
|
id: McpCommandIds.StartPromptForServer,
|
|
340
|
-
title: ( localize(
|
|
340
|
+
title: ( localize(11947, "{0} prompts", promptCount)),
|
|
341
341
|
arguments: [server]
|
|
342
342
|
}
|
|
343
343
|
});
|
|
@@ -346,7 +346,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
346
346
|
range,
|
|
347
347
|
command: {
|
|
348
348
|
id: McpCommandIds.ServerOptions,
|
|
349
|
-
title: ( localize(
|
|
349
|
+
title: ( localize(11948, "More...")),
|
|
350
350
|
arguments: [server.definition.id]
|
|
351
351
|
}
|
|
352
352
|
});
|
|
@@ -394,7 +394,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
394
394
|
clientIdOffset
|
|
395
395
|
} = candidates[i];
|
|
396
396
|
const existing = existingSecrets[i];
|
|
397
|
-
const title = existing ? ( localize(
|
|
397
|
+
const title = existing ? ( localize(11949, "Replace Client Secret")) : ( localize(11950, "Set Client Secret"));
|
|
398
398
|
lenses.push({
|
|
399
399
|
range: Range.fromPositions(model.getPositionAt(clientIdOffset)),
|
|
400
400
|
command: {
|
|
@@ -473,19 +473,19 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
473
473
|
function pushAnnotation(savedId, offset, saved) {
|
|
474
474
|
const tooltip = ( new MarkdownString([createMarkdownCommandLink({
|
|
475
475
|
id: McpCommandIds.EditStoredInput,
|
|
476
|
-
text: ( localize(
|
|
476
|
+
text: ( localize(11951, "Edit")),
|
|
477
477
|
arguments: [savedId, model.uri, mcpConfigurationSection, inConfig.target],
|
|
478
|
-
tooltip: ( localize(
|
|
478
|
+
tooltip: ( localize(11952, "Edit saved value"))
|
|
479
479
|
}), createMarkdownCommandLink({
|
|
480
480
|
id: McpCommandIds.RemoveStoredInput,
|
|
481
|
-
text: ( localize(
|
|
481
|
+
text: ( localize(11953, "Clear")),
|
|
482
482
|
arguments: [inConfig.scope, savedId],
|
|
483
|
-
tooltip: ( localize(
|
|
483
|
+
tooltip: ( localize(11954, "Clear saved value"))
|
|
484
484
|
}), createMarkdownCommandLink({
|
|
485
485
|
id: McpCommandIds.RemoveStoredInput,
|
|
486
|
-
text: ( localize(
|
|
486
|
+
text: ( localize(11955, "Clear All")),
|
|
487
487
|
arguments: [inConfig.scope],
|
|
488
|
-
tooltip: ( localize(
|
|
488
|
+
tooltip: ( localize(11956, "Clear all saved values"))
|
|
489
489
|
})].join(" | "), {
|
|
490
490
|
isTrusted: true
|
|
491
491
|
}));
|
|
@@ -98,16 +98,16 @@ let McpConfigMigrationContribution = class McpConfigMigrationContribution extend
|
|
|
98
98
|
}
|
|
99
99
|
showMcpConfigErrorNotification(isRemote) {
|
|
100
100
|
const message = isRemote ? ( localize(
|
|
101
|
-
|
|
101
|
+
11957,
|
|
102
102
|
"MCP servers should no longer be configured in remote user settings. Use the dedicated MCP configuration instead."
|
|
103
103
|
)) : ( localize(
|
|
104
|
-
|
|
104
|
+
11958,
|
|
105
105
|
"MCP servers should no longer be configured in user settings. Use the dedicated MCP configuration instead."
|
|
106
106
|
));
|
|
107
|
-
const openConfigLabel = isRemote ? ( localize(
|
|
107
|
+
const openConfigLabel = isRemote ? ( localize(11959, "Open Remote User MCP Configuration")) : ( localize(11960, "Open User MCP Configuration"));
|
|
108
108
|
const commandId = isRemote ? McpCommandIds.OpenRemoteUserMcp : McpCommandIds.OpenUserMcp;
|
|
109
109
|
this.notificationService.prompt(Severity.Error, message, [{
|
|
110
|
-
label: ( localize(
|
|
110
|
+
label: ( localize(11961, "Update Now")),
|
|
111
111
|
run: async () => {
|
|
112
112
|
await this.migrateMcpConfig();
|
|
113
113
|
await this.commandService.executeCommand(commandId);
|
|
@@ -74,7 +74,7 @@ let McpResourcePickHelper = class McpResourcePickHelper extends Disposable {
|
|
|
74
74
|
id: resource.template.template,
|
|
75
75
|
label: resource.title || resource.name,
|
|
76
76
|
description: resource.description,
|
|
77
|
-
detail: ( localize(
|
|
77
|
+
detail: ( localize(11977, "Resource template: {0}", resource.template.template)),
|
|
78
78
|
iconPath
|
|
79
79
|
};
|
|
80
80
|
}
|
|
@@ -221,7 +221,7 @@ let McpResourcePickHelper = class McpResourcePickHelper extends Disposable {
|
|
|
221
221
|
return uri;
|
|
222
222
|
}
|
|
223
223
|
this._notificationService.warn(( localize(
|
|
224
|
-
|
|
224
|
+
11978,
|
|
225
225
|
"The resource {0} was not found.",
|
|
226
226
|
(McpResourceURI.toServer(uri).resourceURL.toString())
|
|
227
227
|
)));
|
|
@@ -266,13 +266,13 @@ let McpResourcePickHelper = class McpResourcePickHelper extends Disposable {
|
|
|
266
266
|
}
|
|
267
267
|
}
|
|
268
268
|
let placeholder = ( localize(
|
|
269
|
-
|
|
269
|
+
11979,
|
|
270
270
|
"Value for ${0} in {1}",
|
|
271
271
|
variable.name.toUpperCase(),
|
|
272
272
|
rt.template.resolve(variablesWithPlaceholders).replaceAll("%24", "$")
|
|
273
273
|
));
|
|
274
274
|
if (variable.optional) {
|
|
275
|
-
placeholder += " (" + ( localize(
|
|
275
|
+
placeholder += " (" + ( localize(11980, "Optional")) + ")";
|
|
276
276
|
}
|
|
277
277
|
input.placeholder = placeholder;
|
|
278
278
|
input.value = "";
|
|
@@ -292,7 +292,7 @@ let McpResourcePickHelper = class McpResourcePickHelper extends Disposable {
|
|
|
292
292
|
} else if (variable.optional) {
|
|
293
293
|
items.unshift({
|
|
294
294
|
id: currentID,
|
|
295
|
-
label: ( localize(
|
|
295
|
+
label: ( localize(11981, "<Empty>"))
|
|
296
296
|
});
|
|
297
297
|
}
|
|
298
298
|
input.items = items;
|
|
@@ -463,7 +463,7 @@ let AbstractMcpResourceAccessPick = class AbstractMcpResourceAccessPick {
|
|
|
463
463
|
picker.keepScrollPosition = true;
|
|
464
464
|
const store = ( new DisposableStore());
|
|
465
465
|
const goBackId = "_goback_";
|
|
466
|
-
const attachButton = ( localize(
|
|
466
|
+
const attachButton = ( localize(11982, "Attach to chat"));
|
|
467
467
|
const helper = store.add(this._instantiationService.createInstance(McpResourcePickHelper));
|
|
468
468
|
if (this._scopeTo) {
|
|
469
469
|
helper.explicitServers = [this._scopeTo];
|
|
@@ -491,7 +491,7 @@ let AbstractMcpResourceAccessPick = class AbstractMcpResourceAccessPick {
|
|
|
491
491
|
if (helper.checkIfNestedResources()) {
|
|
492
492
|
const goBackItem = {
|
|
493
493
|
id: goBackId,
|
|
494
|
-
label: ( localize(
|
|
494
|
+
label: ( localize(11983, "Go back ↩")),
|
|
495
495
|
alwaysShow: true
|
|
496
496
|
};
|
|
497
497
|
items.push(goBackItem);
|
|
@@ -573,7 +573,7 @@ let McpResourceQuickPick = class McpResourceQuickPick extends AbstractMcpResourc
|
|
|
573
573
|
const qp = store.add(this._quickInputService.createQuickPick({
|
|
574
574
|
useSeparators: true
|
|
575
575
|
}));
|
|
576
|
-
qp.placeholder = ( localize(
|
|
576
|
+
qp.placeholder = ( localize(11984, "Search for resources"));
|
|
577
577
|
store.add(this.applyToPick(qp, token));
|
|
578
578
|
store.add(qp.onDidHide(() => store.dispose()));
|
|
579
579
|
qp.show();
|