Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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 = true
mcpServers = false
)
}
}
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 = true
mcp = false
),
window = WindowSettings(
showSaveFileDialog = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ data class TextBasedFilterOption(
val type: String,
val placeholder: String?,
val icon: IconType?,
val title: String?,
val description: String?,
)

data class FilterOption(
Expand All @@ -27,8 +25,8 @@ data class FilterOption(
val options: List<Option>? = null,
) {
data class Option(
val value: String,
val label: String,
val value: String? = null,
val label: String? = null,
)
}

Expand Down
Loading