Skip to content

Commit 56b6346

Browse files
authored
fix: Add mcp: true in the aws Client capabilities when init LSP. (#3)
* fix: Add mcp: true in the aws Client capabilities when init LSP. * fix: moving mcp config under q
1 parent 7a2de6e commit 56b6346

File tree

1 file changed

+3
-1
lines changed
  • plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model

1 file changed

+3
-1
lines changed

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model/ExtendedClientMetadata.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ data class AwsClientCapabilities(
2323

2424
data class DeveloperProfiles(
2525
val developerProfiles: Boolean,
26+
val mcp: Boolean,
2627
)
2728

2829
data class WindowSettings(
@@ -60,7 +61,8 @@ fun createExtendedClientMetadata(project: Project): ExtendedClientMetadata {
6061
),
6162
awsClientCapabilities = AwsClientCapabilities(
6263
q = DeveloperProfiles(
63-
developerProfiles = true
64+
developerProfiles = true,
65+
mcp = true
6466
),
6567
window = WindowSettings(
6668
showSaveFileDialog = true

0 commit comments

Comments
 (0)