Patch Changes
-
#833
6c80022Thanks @tarushnagpal! - On invalid OAuth state, clear auth_url in storage and set the MCP connection state to FAILED ready for reconnection. -
#834
2b4aecdThanks @threepointone! - Fix AgentClient.close() to immediately reject pending RPC calls instead of waiting for WebSocket close handshake timeout.Previously, calling
client.close()would not reject pending RPC calls until the WebSocket close handshake completed (which could take 15+ seconds in some environments). Now pending calls are rejected immediately whenclose()is called, providing faster feedback on intentional disconnects.