fix(mcp): gate SSE session until initialize completes - #2234
Open
Zsanz3 wants to merge 1 commit into
Open
Conversation
SSE /mcp/messages POSTs could reach ServerSession before the handshake finished, causing -32602 "Received request before initialization was complete". Mirror the WebSocket init_done latch in the bridge so later frames wait for the initialize result. Co-authored-by: Zsanz3 <Zsanz3@users.noreply.github.com>
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.
Fixes #2233
Problem
MCP SSE could accept concurrent POSTs (e.g.
tools/call) beforeinitializefinished, which surfaces as-32602 Received request before initialization was complete. WebSocket already had aninit_donelatch; SSE did not.Fix
In
deploy/docker/mcp_bridge.py, add_run_with_init_gatefor SSE sessions: allow the first frame (initialize) immediately, wait for the server's first write (initialize result) to setinit_done, then feed later messages into the read stream. Bridge-only latch — does not patch the upstream MCP SDK race.Test
tests/test_issue_2233_mcp_sse.py— source-shape check plus anyio behavior coverage for the gate.Does not touch #2226.