fix: make HTTP transport more lenient for Claude Code compatibility#26
Draft
GiggleLiu wants to merge 1 commit intoJuliaSMLM:mainfrom
Draft
fix: make HTTP transport more lenient for Claude Code compatibility#26GiggleLiu wants to merge 1 commit intoJuliaSMLM:mainfrom
GiggleLiu wants to merge 1 commit intoJuliaSMLM:mainfrom
Conversation
Changes: - Plain GET requests now return health check JSON instead of HTTP 406 This allows Claude Code's health check to succeed - Accept header check for POST relaxed from strict 406 to debug warning Claude Code may not send the full Accept header per MCP 2025-06-18 spec The MCP protocol version header was already lenient (debug log only). These changes improve compatibility with clients that don't fully implement the MCP 2025-06-18 specification. Fixes connection issues with Claude Code HTTP MCP transport. See: anthropics/claude-code#11633 See: anthropics/claude-code#9492 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.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.
Summary
Background
Claude Code's HTTP MCP transport has known issues:
Accept: text/event-streamheaderapplication/jsonandtext/event-streamin Accept headerThese issues are documented in:
The issues are closed as "not planned" on Claude Code's side, so server-side leniency is needed for compatibility.
Changes
Plain GET health check (
src/transports/http.jl:283-294):{"status":"ok","protocol_version":"2025-06-18","session_id":null}Lenient Accept header (
src/transports/http.jl:347-353):Test plan
🤖 Generated with Claude Code