@@ -445,12 +445,12 @@ func (c *Commands) defaultCommands() []*CommandItem {
// Add Docker MCP command if available and not already enabled
if config.IsDockerMCPAvailable() && !cfg.IsDockerMCPEnabled() {
- commands = append(commands, NewCommandItem(c.com.Styles, "enable_docker_mcp", "Enable Docker MCP", "", ActionEnableDockerMCP{}))
+ commands = append(commands, NewCommandItem(c.com.Styles, "enable_docker_mcp", "Enable Docker MCP Catalog", "", ActionEnableDockerMCP{}))
}
// Add disable Docker MCP command if it's currently enabled
if cfg.IsDockerMCPEnabled() {
- commands = append(commands, NewCommandItem(c.com.Styles, "disable_docker_mcp", "Disable Docker MCP", "", ActionDisableDockerMCP{}))
+ commands = append(commands, NewCommandItem(c.com.Styles, "disable_docker_mcp", "Disable Docker MCP Catalog", "", ActionDisableDockerMCP{}))
}
if c.hasTodos || c.hasQueue {