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
strips RFC 9110 optional whitespace (SP / HTAB) around inbound MCP-Protocol-Version, Mcp-Method, and Mcp-Name values before modern request classification and validation;
uses a two-pointer character scan rather than a regular expression, keeping processing linear for untrusted header values;
keeps actual names containing surrounding whitespace distinct because those values use the existing Base64 sentinel encoding;
adds transport-neutral regressions for long OWS runs and non-OWS Unicode whitespace.
Why
@modelcontextprotocol/conformance@0.2.0-alpha.9's ServerAcceptsWhitespaceHeaderValue check fails against @modelcontextprotocol/server@2.0.0-beta.2 on workerd: the valid padded Mcp-Name is compared byte-for-byte with params.name and rejected as HeaderMismatch.
claudeBot
added
the
v2
Ideas, requests and plans for v2 of the SDK which will incorporate major changes and fixes
label
Aug 18, 2026
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
v2Ideas, requests and plans for v2 of the SDK which will incorporate major changes and fixes
3 participants
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#2452.
What changed
SP/HTAB) around inboundMCP-Protocol-Version,Mcp-Method, andMcp-Namevalues before modern request classification and validation;Why
@modelcontextprotocol/conformance@0.2.0-alpha.9'sServerAcceptsWhitespaceHeaderValuecheck fails against@modelcontextprotocol/server@2.0.0-beta.2on workerd: the valid paddedMcp-Nameis compared byte-for-byte withparams.nameand rejected asHeaderMismatch.Verification
pnpm check:allpnpm build:all