fix: return JSON-RPC errors from MCP route when server/transport construction fails#1783
Open
Matt Van Horn (mvanhorn) wants to merge 1 commit into
Conversation
Contributor
|
PR author is not in the allowed authors list. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
JSON-RPC calls to the built-in MCP server no longer fail with an opaque
InternalServerError. Construction failures in the MCP server or transport are now caught by the route's own error path and returned as spec-compliant JSON-RPC errors with the underlying message, so clients see what actually broke.Why this matters
On v0.46.0 every
POST /mcpcall (initialize,tools/list) returnedInternalServerErroreven withcdpConnected: trueand a working raw CDP endpoint; the reporter in #1437 verified with curl that the failure is immediate on first request and hits every MCP client. That response shape matches the genericapp.onErrorfallback inapps/server/src/api/server.ts, which fires because thePOST /handler inapps/server/src/api/routes/mcp.tsconstructed the MCP server and transport BEFORE its try/catch — any synchronous throw during construction (tool registration, connector wiring, transport options) bypassed the JSON-RPC error path entirely.Changes
route: mcptag, and return a JSON-RPC error (code: -32603) carrying the underlying error message instead of the app-level fallback shape.Testing
Extended the existing test suite (which already injects
createMcpServer/createMcpTransportfactories) with cases where each factory throws; asserts the response is a 500 JSON-RPC error object, not the app-levelInternalServerErrorshape.Fixes #1437