refactor: create McpServer per session for reliable HTTP reconnection#299
Merged
refactor: create McpServer per session for reliable HTTP reconnection#299
Conversation
The MCP SDK expects one McpServer per transport connection. The previous code shared a single instance across all HTTP sessions, which meant reconnecting clients hit "Already connected to a transport" errors because the old session's binding was never released. Now each StreamableHTTP and SSE session gets its own McpServer instance, matching the pattern from the SDK documentation. Sessions are tracked in a unified map with their transport and server for cleanup.
The MCP SDK expects one McpServer per transport connection. The previous code shared a single instance across all HTTP sessions, which meant reconnecting clients hit "Already connected to a transport" errors because the old session's binding was never released. Now each StreamableHTTP and SSE session gets its own McpServer instance, matching the pattern from the SDK documentation. Sessions are tracked in a unified map with their transport and server for cleanup. Also adds reconnection tests including a dirty-close scenario that reproduces the original bug, and promotes the multi-client test from it.fails to it (now works with per-session servers).
medyas
pushed a commit
to YassineValue/Figma-Context-MCP
that referenced
this pull request
Mar 22, 2026
… errors - Adopt upstream GLips#299 per-session McpServer architecture: each HTTP session gets its own McpServer instance, fixing "Already connected" errors on client reconnection. Preserved fork additions (health endpoint, metrics, caching support). - fetchWithRetry: throw combined error with both fetch and curl failure reasons instead of silently discarding curl context. - writeLogs: switch from sync fs to async fs/promises to avoid blocking the event loop when writing large debug files in development mode. - style.ts: fix let→const for never-reassigned backgroundRepeat.
compassalessandrolorenz
pushed a commit
to compassalessandrolorenz/Figma-Context-MCP-AIR
that referenced
this pull request
Mar 25, 2026
…GLips#299) * refactor: create McpServer per session instead of sharing one instance The MCP SDK expects one McpServer per transport connection. The previous code shared a single instance across all HTTP sessions, which meant reconnecting clients hit "Already connected to a transport" errors because the old session's binding was never released. Now each StreamableHTTP and SSE session gets its own McpServer instance, matching the pattern from the SDK documentation. Sessions are tracked in a unified map with their transport and server for cleanup. * refactor: create McpServer per session instead of sharing one instance The MCP SDK expects one McpServer per transport connection. The previous code shared a single instance across all HTTP sessions, which meant reconnecting clients hit "Already connected to a transport" errors because the old session's binding was never released. Now each StreamableHTTP and SSE session gets its own McpServer instance, matching the pattern from the SDK documentation. Sessions are tracked in a unified map with their transport and server for cleanup. Also adds reconnection tests including a dirty-close scenario that reproduces the original bug, and promotes the multi-client test from it.fails to it (now works with per-session servers).
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
McpServerinstance per StreamableHTTP/SSE session instead of sharing one across all connectionssessionsmap that stores both the transport and its associated serverit.failstoit(now works with per-session servers)Test plan