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
Describe the bug
If the stdio streams close before responding to a request (i.e. the server dies), the pending request waits forever (or for the read timeout) instead of erroring.
To Reproduce
Steps to reproduce the behavior:
await session.initialize() or some other request
in the server request handler, exit instead of responding to the request
on the client, the await never resolves so the client hangs indefinitely
Expected behavior
The typescript SDK makes the pending requests return a -32000 "Connection closed" in this case
I was about to open an issue on this as well. I use mcp in oterm. If a user provides erroneous parameters for example, await session.initialize() just hands forever.
I temporarily do
Describe the bug
If the stdio streams close before responding to a request (i.e. the server dies), the pending request waits forever (or for the read timeout) instead of erroring.
To Reproduce
Steps to reproduce the behavior:
await session.initialize()
or some other requestawait
never resolves so the client hangs indefinitelyExpected behavior
The typescript SDK makes the pending requests return a
-32000
"Connection closed" in this casehttps://github.com/modelcontextprotocol/typescript-sdk/blob/0fa2397174eba309b54575294d56754c52b13a65/src/shared/protocol.ts#L260-L263
The text was updated successfully, but these errors were encountered: