From 3ca086d9695d2a46c95e57c3b3be48a50c10048b Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Tue, 18 Mar 2025 15:18:02 +0800 Subject: [PATCH] fix: update DefaultMcpServerBaseUrl for consistency - Changed DefaultMcpServerBaseUrl from "http://localhost:9000/sse" to "http://localhost:9000" for improved clarity and consistency in configuration. - Ensured alignment with other base URL definitions in the config.go file. --- core/utils/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/utils/config.go b/core/utils/config.go index d712ff66..8172a5c5 100644 --- a/core/utils/config.go +++ b/core/utils/config.go @@ -35,7 +35,7 @@ const ( DefaultPyenvPath = "/root/.pyenv" DefaultNodeModulesPath = "/usr/lib/node_modules" DefaultGoPath = "/root/go" - DefaultMcpServerBaseUrl = "http://localhost:9000/sse" + DefaultMcpServerBaseUrl = "http://localhost:9000" DefaultOpenAPIUrl = "http://localhost:8000/openapi.json" )