From 78a12147d7366375cac086d4e4279fb3b95aa40d Mon Sep 17 00:00:00 2001 From: Ed Zynda Date: Wed, 18 Jun 2025 11:40:47 +0300 Subject: [PATCH] fix config --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 238a4bf9..f6e1f498 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -77,7 +77,7 @@ func EnsureConfigExists() error { // Check for existing config files (new format first, then legacy) configNames := []string{".mcphost", ".mcp"} - configTypes := []string{"yaml", "json"} + configTypes := []string{"yml", "yaml", "json"} for _, configName := range configNames { for _, configType := range configTypes {