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.
This commit is contained in:
Marvin Zhang
2025-03-18 15:18:02 +08:00
parent a43f0cc5da
commit 3ca086d969

View File

@@ -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"
)