Skip to content

Commit 69b81ce

Browse files
committed
fix: ensure proper cleanup in stdio_client
1 parent 9ae4df8 commit 69b81ce

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/mcp/client/stdio.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -159,4 +159,14 @@ async def stdin_writer():
159159
):
160160
tg.start_soon(stdout_reader)
161161
tg.start_soon(stdin_writer)
162-
yield read_stream, write_stream
162+
try:
163+
yield read_stream, write_stream
164+
finally:
165+
if process.stdin:
166+
await process.stdin.aclose()
167+
if process.stdout:
168+
await process.stdout.aclose()
169+
if process.stderr:
170+
await process.stderr.aclose()
171+
process.terminate()
172+
await process.aclose()

0 commit comments

Comments
 (0)