Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class AwsServerCapabilitiesProvider {
),
history = true,
export = true,
mcpServers = false
mcpServers = true
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ fun createExtendedClientMetadata(project: Project): ExtendedClientMetadata {
awsClientCapabilities = AwsClientCapabilities(
q = DeveloperProfiles(
developerProfiles = true,
mcp = false
mcp = true
),
window = WindowSettings(
showSaveFileDialog = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ data class FilterOption(
val options: List<Option>? = null,
) {
data class Option(
val value: String? = null,
val label: String? = null,
val value: String,
val label: String,
)
}

Expand Down
Loading