Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.232 Home All releases olderv2.1.231 v2.1.233newer
Claude Code v2.1.232

MCP capability probe no longer hangs on a bad reply

You'll notice
Useful3 Signal2
MCP

An MCP server replying badly to the capability probe no longer hangs your connection.

What

When probing an HTTP MCP server for discovery support, a reply carrying the wrong request id or one that fails to decode now resolves cleanly and the server is treated as predating the discovery protocol, instead of hanging or throwing.

Details
  • Outcomes are reported as id-mismatch or malformed; the synthesised errors are named McpProbeIdMismatchError and McpProbeMalformedReplyError.
  • Decode failures cover both malformed JSON and schema validation failures.
  • Quoted values in the errors are cut at roughly 200 characters with a … [truncated] marker.
  • A stream ending early is now distinguished from a send failure via a dedicated stream-end callback.
Evidence

McpProbeIdMismatchError

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.232 →