feat(handler): update to use static base path for SSE server

This commit is contained in:
2026-04-07 20:03:43 +02:00
parent c2e2c9b873
commit ea5bb38ee4

View File

@@ -82,7 +82,7 @@ func (h *Handler) newSSEServer(baseURL, basePath string) *server.SSEServer {
return server.NewSSEServer(
h.mcpServer,
server.WithBaseURL(baseURL),
server.WithBasePath(basePath),
server.WithStaticBasePath(basePath),
)
}