Skip to content

Commit 9e4d910

Browse files
chungjacmanodnyab
andauthored
feat(amazonq): add MCP server support (#5812)
* feat(amazonq): add MCP server support * Revert "revert: revert to "mcp support feature flag" (#5803)" This reverts commit ba228e1. --------- Co-authored-by: manodnyab <[email protected]>
1 parent 02cc324 commit 9e4d910

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/flareChat/AwsServerCapabilitiesProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class AwsServerCapabilitiesProvider {
3434
),
3535
history = true,
3636
export = true,
37-
mcpServers = false
37+
mcpServers = true
3838
)
3939
}
4040
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fun createExtendedClientMetadata(project: Project): ExtendedClientMetadata {
6262
awsClientCapabilities = AwsClientCapabilities(
6363
q = DeveloperProfiles(
6464
developerProfiles = true,
65-
mcp = false
65+
mcp = true
6666
),
6767
window = WindowSettings(
6868
showSaveFileDialog = true

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ data class FilterOption(
2727
val options: List<Option>? = null,
2828
) {
2929
data class Option(
30-
val value: String? = null,
31-
val label: String? = null,
30+
val value: String,
31+
val label: String,
3232
)
3333
}
3434

0 commit comments

Comments
 (0)