Sweep 19 Sep 2026 · 02:36Z Build v2.1.278 500 read Stable v2.1.267 Latest v2.1.278 Next v2.1.278 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.273 ·

HTTP method handling tightened for a webhook-style MCP transport route

A webhook-style connection route now replies 'method not allowed' instead of 'not found' for wrong HTTP methods

TierYou'll noticehow much it should matter to you
Useful2my rating, 1 to 5
Signal1worth watching, 1 to 5
AreaMCPwhat it touches
KindBug Fixesin v2.1.273,
You'll notice

A webhook-style connection route now replies 'method not allowed' instead of 'not found' for wrong HTTP methods

What

Claude Code has an internal route used to look up a live MCP (Model Context Protocol, the system that lets Claude use external tools) transport connection by secret and ID. If a request to a valid, known connection used the wrong HTTP method (anything other than POST), it used to get the same generic "not found" response as a request to a connection that doesn't exist at all. Now it gets a proper "method not allowed" response, with an Allow: POST header telling the caller what method it should have used.

Why

This makes it possible to tell the difference between "this connection doesn't exist" and "this connection exists but you called it the wrong way," which is clearer for anything talking to this route programmatically.

See this entry in the whole of v2.1.273 →