Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Client requests hang forever if server dies #332

Open
mroch opened this issue Mar 20, 2025 · 1 comment · May be fixed by #333
Open

Client requests hang forever if server dies #332

mroch opened this issue Mar 20, 2025 · 1 comment · May be fixed by #333

Comments

@mroch
Copy link

mroch commented Mar 20, 2025

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:

  1. await session.initialize() or some other request
  2. in the server request handler, exit instead of responding to the request
  3. 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

https://github.com/modelcontextprotocol/typescript-sdk/blob/0fa2397174eba309b54575294d56754c52b13a65/src/shared/protocol.ts#L260-L263

@mroch mroch linked a pull request Mar 20, 2025 that will close this issue
9 tasks
@ggozad
Copy link

ggozad commented Mar 21, 2025

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

await asyncio.wait_for(session.initialize(), timeout=5)

but it feels pretty bad.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants