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

fix: prevent process hanging in stdio_client context manager #361

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

hwaxxer
Copy link

@hwaxxer hwaxxer commented Mar 24, 2025

Motivation and Context

Fixes #360

How Has This Been Tested?

Tested minimal example:

import asyncio

from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client


async def run():
    server_params = StdioServerParameters(
        command="claude",
        args=["mcp", "serve"],
    )
    async with stdio_client(server_params) as (read, write):   
        async with ClientSession(read, write) as _:
            pass
        print("exit ClientSession")
    print("exit stdio_client")

if __name__ == "__main__":
    asyncio.run(run())

Breaking Changes

No

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Documentation update

Checklist

  • I have read the MCP Documentation
  • My code follows the repository's style guidelines
  • New and existing tests pass locally
  • I have added appropriate error handling
  • I have added or updated documentation as needed

Additional context

@hwaxxer hwaxxer force-pushed the stdio-client-cleanup branch from 69b81ce to c40498f Compare March 24, 2025 14:19
@hwaxxer hwaxxer force-pushed the stdio-client-cleanup branch from c40498f to 2c89611 Compare March 25, 2025 07:17
@hwaxxer hwaxxer changed the title fix: prevent process deadlock in stdio_client context manager fix: prevent process hanging in stdio_client context manager Mar 25, 2025
@mroch
Copy link

mroch commented Mar 29, 2025

#372 made the same fix

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 this pull request may close these issues.

stdio_client context manager hangs
2 participants