You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue:
Clients (Inspector/Cherry Studio) fail to connect when MCP Server uses a subpath (e.g., http://domain.com/subpath/sse). Root paths (http://domain.com/) work normally.
Reproduce:
Start MCP Server at http://domain.com/subpath/sse
Client connection fails with error: Error POSTing to endpoint (HTTP 503): no healthy upstream
Cause:
In sse.ts#L146, new URL() discards the subpath from the server URL. Example:
Request to /messages/ becomes http://domain.com/messages/ instead of http://domain.com/subpath/messages/.
The text was updated successfully, but these errors were encountered:
Issue:
Clients (Inspector/Cherry Studio) fail to connect when MCP Server uses a subpath (e.g.,
http://domain.com/subpath/sse
). Root paths (http://domain.com/
) work normally.Reproduce:
http://domain.com/subpath/sse
Error POSTing to endpoint (HTTP 503): no healthy upstream
Cause:
In
sse.ts#L146
,new URL()
discards the subpath from the server URL. Example:Request to
/messages/
becomeshttp://domain.com/messages/
instead ofhttp://domain.com/subpath/messages/
.The text was updated successfully, but these errors were encountered: