@codingame/monaco-vscode-mcp-service-override 32.0.0 → 32.0.1
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 +1 -0
- package/package.json +2 -2
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcp.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcp.view.contribution.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcp.view.contribution.js +5 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpAddContextContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommands.js +61 -61
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpElicitationService.js +25 -25
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpLanguageFeatures.js +22 -22
- 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 +98 -6
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServersView.d.ts +59 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServersView.js +576 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpWorkbenchService.js +10 -10
- package/vscode/src/vs/workbench/contrib/mcp/browser/media/mcpServersView.css +53 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/discovery/extensionMcpDiscovery.js +4 -4
- 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 +6 -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/services/authentication/browser/authenticationMcpService.js +9 -9
|
@@ -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(10974, "None")),
|
|
31
|
+
description: ( localize(10975, "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(10976, "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(10977, "Respond")), undefined, true, () => resolve(this._doElicitForm(elicitation, token)))))],
|
|
124
|
+
secondary: [store.add(( new Action("mcp.elicit.cancel", ( localize(10978, "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(10979, "Authorization Required")), ( new MarkdownString()).appendText(elicitation.message).appendMarkdown("\n\n" + ( localize(10980, "Open this URL?"))).appendCodeblock("", elicitation.url), ( localize(10981, "{0} (MCP Server)", server.definition.label)), ( localize(10982, "Open {0}", ( URI.parse(elicitation.url)).authority)), ( localize(10983, "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(10984, "This will open {0}", elicitation.url)),
|
|
182
|
+
source: ( localize(10976, "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(10985, "Open URL")), undefined, true, () => resolve(this._doElicitUrl(elicitation, token)))))],
|
|
186
|
+
secondary: [store.add(( new Action("mcp.elicit.cancel", ( localize(10978, "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(10986, "Optional"))})` : ( localize(10986, "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(10987, "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(10988, "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(10989, "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(10990, "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(10991, "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(10992, "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(10992, "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(10993, "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(10994, "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(10995, "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(10996, "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(10997, "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(10998, "True")),
|
|
632
632
|
value: "true"
|
|
633
633
|
}, {
|
|
634
634
|
id: "false",
|
|
635
|
-
label: ( localize(
|
|
635
|
+
label: ( localize(10999, "False")),
|
|
636
636
|
value: "false"
|
|
637
637
|
}],
|
|
638
638
|
defaultValue: schema.default !== undefined ? String(schema.default) : undefined
|
|
@@ -125,7 +125,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
125
125
|
diagnostics.push({
|
|
126
126
|
severity: MarkerSeverity.Warning,
|
|
127
127
|
message: ( localize(
|
|
128
|
-
|
|
128
|
+
11000,
|
|
129
129
|
"Variable `{0}` not found, did you mean ${{1}}?",
|
|
130
130
|
name,
|
|
131
131
|
getClosestMatchingVariable(name) + (arg ? `:${arg}` : "")
|
|
@@ -189,7 +189,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
189
189
|
range,
|
|
190
190
|
command: {
|
|
191
191
|
id: McpCommandIds.ServerOptions,
|
|
192
|
-
title: "$(circle-slash) " + ( localize(
|
|
192
|
+
title: "$(circle-slash) " + ( localize(11001, "Disabled")),
|
|
193
193
|
arguments: [server.definition.id]
|
|
194
194
|
}
|
|
195
195
|
});
|
|
@@ -203,14 +203,14 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
203
203
|
range,
|
|
204
204
|
command: {
|
|
205
205
|
id: McpCommandIds.ShowOutput,
|
|
206
|
-
title: "$(error) " + ( localize(
|
|
206
|
+
title: "$(error) " + ( localize(11002, "Error")),
|
|
207
207
|
arguments: [server.definition.id]
|
|
208
208
|
}
|
|
209
209
|
}, {
|
|
210
210
|
range,
|
|
211
211
|
command: {
|
|
212
212
|
id: McpCommandIds.RestartServer,
|
|
213
|
-
title: ( localize(
|
|
213
|
+
title: ( localize(11003, "Restart")),
|
|
214
214
|
arguments: [server.definition.id, {
|
|
215
215
|
autoTrustChanges: true
|
|
216
216
|
}]
|
|
@@ -221,7 +221,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
221
221
|
range,
|
|
222
222
|
command: {
|
|
223
223
|
id: McpCommandIds.RestartServer,
|
|
224
|
-
title: ( localize(
|
|
224
|
+
title: ( localize(11004, "Debug")),
|
|
225
225
|
arguments: [server.definition.id, {
|
|
226
226
|
debug: true,
|
|
227
227
|
autoTrustChanges: true
|
|
@@ -235,14 +235,14 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
235
235
|
range,
|
|
236
236
|
command: {
|
|
237
237
|
id: McpCommandIds.ShowOutput,
|
|
238
|
-
title: "$(loading~spin) " + ( localize(
|
|
238
|
+
title: "$(loading~spin) " + ( localize(11005, "Starting")),
|
|
239
239
|
arguments: [server.definition.id]
|
|
240
240
|
}
|
|
241
241
|
}, {
|
|
242
242
|
range,
|
|
243
243
|
command: {
|
|
244
244
|
id: McpCommandIds.StopServer,
|
|
245
|
-
title: ( localize(
|
|
245
|
+
title: ( localize(11006, "Cancel")),
|
|
246
246
|
arguments: [server.definition.id]
|
|
247
247
|
}
|
|
248
248
|
});
|
|
@@ -252,21 +252,21 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
252
252
|
range,
|
|
253
253
|
command: {
|
|
254
254
|
id: McpCommandIds.ShowOutput,
|
|
255
|
-
title: "$(check) " + ( localize(
|
|
255
|
+
title: "$(check) " + ( localize(11007, "Running")),
|
|
256
256
|
arguments: [server.definition.id]
|
|
257
257
|
}
|
|
258
258
|
}, {
|
|
259
259
|
range,
|
|
260
260
|
command: {
|
|
261
261
|
id: McpCommandIds.StopServer,
|
|
262
|
-
title: ( localize(
|
|
262
|
+
title: ( localize(11008, "Stop")),
|
|
263
263
|
arguments: [server.definition.id]
|
|
264
264
|
}
|
|
265
265
|
}, {
|
|
266
266
|
range,
|
|
267
267
|
command: {
|
|
268
268
|
id: McpCommandIds.RestartServer,
|
|
269
|
-
title: ( localize(
|
|
269
|
+
title: ( localize(11003, "Restart")),
|
|
270
270
|
arguments: [server.definition.id, {
|
|
271
271
|
autoTrustChanges: true
|
|
272
272
|
}]
|
|
@@ -277,7 +277,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
277
277
|
range,
|
|
278
278
|
command: {
|
|
279
279
|
id: McpCommandIds.RestartServer,
|
|
280
|
-
title: ( localize(
|
|
280
|
+
title: ( localize(11004, "Debug")),
|
|
281
281
|
arguments: [server.definition.id, {
|
|
282
282
|
autoTrustChanges: true,
|
|
283
283
|
debug: true
|
|
@@ -291,7 +291,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
291
291
|
range,
|
|
292
292
|
command: {
|
|
293
293
|
id: McpCommandIds.StartServer,
|
|
294
|
-
title: "$(debug-start) " + ( localize(
|
|
294
|
+
title: "$(debug-start) " + ( localize(11009, "Start")),
|
|
295
295
|
arguments: [server.definition.id, {
|
|
296
296
|
autoTrustChanges: true
|
|
297
297
|
}]
|
|
@@ -302,7 +302,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
302
302
|
range,
|
|
303
303
|
command: {
|
|
304
304
|
id: McpCommandIds.StartServer,
|
|
305
|
-
title: ( localize(
|
|
305
|
+
title: ( localize(11004, "Debug")),
|
|
306
306
|
arguments: [server.definition.id, {
|
|
307
307
|
autoTrustChanges: true,
|
|
308
308
|
debug: true
|
|
@@ -318,7 +318,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
318
318
|
range,
|
|
319
319
|
command: {
|
|
320
320
|
id: "",
|
|
321
|
-
title: ( localize(
|
|
321
|
+
title: ( localize(11010, "{0} tools", toolCount))
|
|
322
322
|
}
|
|
323
323
|
});
|
|
324
324
|
}
|
|
@@ -328,7 +328,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
328
328
|
range,
|
|
329
329
|
command: {
|
|
330
330
|
id: McpCommandIds.StartPromptForServer,
|
|
331
|
-
title: ( localize(
|
|
331
|
+
title: ( localize(11011, "{0} prompts", promptCount)),
|
|
332
332
|
arguments: [server]
|
|
333
333
|
}
|
|
334
334
|
});
|
|
@@ -337,7 +337,7 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
337
337
|
range,
|
|
338
338
|
command: {
|
|
339
339
|
id: McpCommandIds.ServerOptions,
|
|
340
|
-
title: ( localize(
|
|
340
|
+
title: ( localize(11012, "More...")),
|
|
341
341
|
arguments: [server.definition.id]
|
|
342
342
|
}
|
|
343
343
|
});
|
|
@@ -412,19 +412,19 @@ let McpLanguageFeatures = class McpLanguageFeatures extends Disposable {
|
|
|
412
412
|
function pushAnnotation(savedId, offset, saved) {
|
|
413
413
|
const tooltip = ( new MarkdownString([createMarkdownCommandLink({
|
|
414
414
|
id: McpCommandIds.EditStoredInput,
|
|
415
|
-
text: ( localize(
|
|
415
|
+
text: ( localize(11013, "Edit")),
|
|
416
416
|
arguments: [savedId, model.uri, mcpConfigurationSection, inConfig.target],
|
|
417
|
-
tooltip: ( localize(
|
|
417
|
+
tooltip: ( localize(11014, "Edit saved value"))
|
|
418
418
|
}), createMarkdownCommandLink({
|
|
419
419
|
id: McpCommandIds.RemoveStoredInput,
|
|
420
|
-
text: ( localize(
|
|
420
|
+
text: ( localize(11015, "Clear")),
|
|
421
421
|
arguments: [inConfig.scope, savedId],
|
|
422
|
-
tooltip: ( localize(
|
|
422
|
+
tooltip: ( localize(11016, "Clear saved value"))
|
|
423
423
|
}), createMarkdownCommandLink({
|
|
424
424
|
id: McpCommandIds.RemoveStoredInput,
|
|
425
|
-
text: ( localize(
|
|
425
|
+
text: ( localize(11017, "Clear All")),
|
|
426
426
|
arguments: [inConfig.scope],
|
|
427
|
-
tooltip: ( localize(
|
|
427
|
+
tooltip: ( localize(11018, "Clear all saved values"))
|
|
428
428
|
})].join(" | "), {
|
|
429
429
|
isTrusted: true
|
|
430
430
|
}));
|
|
@@ -98,16 +98,16 @@ let McpConfigMigrationContribution = class McpConfigMigrationContribution extend
|
|
|
98
98
|
}
|
|
99
99
|
showMcpConfigErrorNotification(isRemote) {
|
|
100
100
|
const message = isRemote ? ( localize(
|
|
101
|
-
|
|
101
|
+
11019,
|
|
102
102
|
"MCP servers should no longer be configured in remote user settings. Use the dedicated MCP configuration instead."
|
|
103
103
|
)) : ( localize(
|
|
104
|
-
|
|
104
|
+
11020,
|
|
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(11021, "Open Remote User MCP Configuration")) : ( localize(11022, "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(11023, "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(11039, "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
|
+
11040,
|
|
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
|
+
11041,
|
|
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(11042, "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(11043, "<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(11044, "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(11045, "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(11046, "Search for resources"));
|
|
577
577
|
store.add(this.applyToPick(qp, token));
|
|
578
578
|
store.add(qp.onDidHide(() => store.dispose()));
|
|
579
579
|
qp.show();
|