Title: The cleanup procedure after "yield" in lifespan is unreachable on Windows · Issue #1027 · modelcontextprotocol/python-sdk · GitHub
Open Graph Title: The cleanup procedure after "yield" in lifespan is unreachable on Windows · Issue #1027 · modelcontextprotocol/python-sdk
X Title: The cleanup procedure after "yield" in lifespan is unreachable on Windows · Issue #1027 · modelcontextprotocol/python-sdk
Description: Initial Checks I confirm that I'm using the latest version of MCP Python SDK I confirm that I searched for my issue in https://github.com/modelcontextprotocol/python-sdk/issues before opening this issue Description Dear developpers, I am...
Open Graph Description: Initial Checks I confirm that I'm using the latest version of MCP Python SDK I confirm that I searched for my issue in https://github.com/modelcontextprotocol/python-sdk/issues before opening this ...
X Description: Initial Checks I confirm that I'm using the latest version of MCP Python SDK I confirm that I searched for my issue in https://github.com/modelcontextprotocol/python-sdk/issues before opening t...
Opengraph URL: https://github.com/modelcontextprotocol/python-sdk/issues/1027
X: @github
Domain: github.com
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"The cleanup procedure after \"yield\" in lifespan is unreachable on Windows","articleBody":"### Initial Checks\n\n- [x] I confirm that I'm using the latest version of MCP Python SDK\n- [x] I confirm that I searched for my issue in https://github.com/modelcontextprotocol/python-sdk/issues before opening this issue\n\n### Description\n\nDear developpers,\n\nI am developing with MCP SDK Python on Windows. I noticed that the resource cleanup process of my local process defined inside the `lifespan` is not executed at all. To investigate the issue, I tested with the minimal code below and found that the code after the `yield` statement is never executed, regardless of whether an error occurs or not.\nI haven’t been able to test this on platforms other than Windows or with the SSE transport.\n\n```python\n\"\"\"agent_runner.py\n\nA minimum code to use MCP server.\nPlease run this file.\n\n\"\"\"\nimport os\nimport sys\nimport asyncio\nimport logging\nfrom dotenv import load_dotenv\nfrom openai import AsyncOpenAI\nfrom agents import Agent, Runner, OpenAIChatCompletionsModel\nfrom agents.mcp import MCPServerStdio, MCPServerStdioParams\n\nload_dotenv() # loading OPENAI_API_KEY\n\nlogging.basicConfig(level=logging.INFO)\nlogger = logging.getLogger(\"agent_runner\")\n\n# disable library loggers\nlogging.getLogger('mcp').setLevel(logging.ERROR)\nlogging.getLogger('httpx').setLevel(logging.ERROR)\n\n\nasync def main():\n\n # Launch MCP server\n params = MCPServerStdioParams(\n command=sys.executable,\n args=[os.path.join(os.path.dirname(__file__), \"srv_stdio.py\")],\n env={},\n encoding=\"utf-8\"\n )\n async with MCPServerStdio(params=params, name=\"MCP tool\") as mcp_server:\n\n logger.info(\"4. MCP stdio server running\")\n\n # Create agent\n agent = Agent(\n name=\"AgentWithMCP\",\n instructions=\"Answer with using tools.\",\n model=OpenAIChatCompletionsModel(model=\"gpt-4\", openai_client=AsyncOpenAI()),\n mcp_servers=[mcp_server]\n )\n\n prompt = \"Please reverse the word 'hello'.\"\n logger.info(f\" PROMPT: {prompt}\")\n result = await Runner.run(agent, input=prompt)\n logger.info(f\" FINAL OUTPUT: {result.final_output}\")\n\n\nif __name__ == \"__main__\":\n logger.info(\"1. Starting program...\")\n asyncio.run(main())\n logger.info(\"8. Program terminated.\")\n```\n\n```python\n\n\"\"\"srv_stdio.py\n\nA minimum code to show ignoring after \"yield\" in lifetime.\nPlease put this file on the same folder as \"agent_runner.py\".\n\n\"\"\"\nfrom __future__ import annotations as _annotations\n\nimport os\nimport sys\nimport logging\nfrom collections.abc import AsyncIterator\nfrom contextlib import asynccontextmanager\nfrom mcp.server.fastmcp import FastMCP\nfrom mcp.server.lowlevel.server import Server, LifespanResultT, RequestT\n\nlogging.basicConfig(level=logging.INFO)\nlogger = logging.getLogger(\"stdio server\")\n\n# disable library loggers\nlogging.getLogger('mcp').setLevel(logging.ERROR)\nlogging.getLogger('httpx').setLevel(logging.ERROR)\n\nif sys.platform == \"win32\" and os.environ.get('PYTHONIOENCODING') is None:\n sys.stdin.reconfigure(encoding=\"utf-8\")\n sys.stdout.reconfigure(encoding=\"utf-8\")\n sys.stderr.reconfigure(encoding=\"utf-8\")\n\n\n@asynccontextmanager\nasync def lifespan(server: Server[LifespanResultT, RequestT]) -\u003e AsyncIterator[object]:\n logger.info('3. Launching Server...')\n try:\n yield {}\n finally:\n logger.info('6. Terminating Server '\n '(Want to release my resources here).') # not shown\n\n\nmcp = FastMCP(\n \"EchoMCPServer\",\n lifespan=lifespan,\n)\n\n\n@mcp.tool()\ndef echo(msg: str) -\u003e str:\n \"\"\"Make the passed string reversed.\"\"\"\n logger.info(f\"5. [echo] called with msg='{msg}'\")\n return msg[::-1]\n\n\nif __name__ == \"__main__\":\n logger.info(\"2. Starting MCP server...\")\n mcp.run()\n logger.info(\"7. MCP server terminated.\") # not shown\n```\n\nThe outputs missing \"6. Terminating Server \\~\" and \"7. MCP server terminated.\".\n```\nINFO:agent_runner:1. Starting program...\nINFO:stdio server:2. Starting MCP server...\nINFO:stdio server:3. Launching Server...\nINFO:agent_runner:4. MCP stdio server running\nINFO:agent_runner: PROMPT: Please reverse the word 'hello'.\nINFO:stdio server:5. [echo] called with msg='olleh'\nINFO:agent_runner: FINAL OUTPUT: The reverse of 'hello' is 'olleh'.\nINFO:agent_runner:8. Program terminated.\n```\n\nI suspected that this issue might be due to the process being forcibly terminated when exiting the `with` block in `MCPServerStdio`. Upon investigation, I found that modifying the following section allows the sample code to correctly display \"6. Terminating Server \\~\" and \"7. MCP server terminated.\", and the cleanup process is executed as intended.\n\n```python\n# mcp/client/stdio/win32.py\n102 - process.terminate()\n102 + os.kill(process.pid, signal.CTRL_C_EVENT)\n```\n\nThis change seems to resolve the issue on my end, but do you think it could be helpful for improving the MCP SDK overall?\n\n### Example Code\n\n```Python\n\n```\n\n### Python \u0026 MCP Python SDK\n\n```Text\nPython 3.10\nmcp 1.9.4\nopenai-agents 0.0.17\n```","author":{"url":"https://github.com/ScatterTemple","@type":"Person","name":"ScatterTemple"},"datePublished":"2025-06-25T16:30:54.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/1027/python-sdk/issues/1027"}
| route-pattern | /_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format) |
| route-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:75e8a9af-a7a6-42f4-87fa-300d24648c7a |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | CB46:FAAB5:356757:460A2E:6A5978DD |
| html-safe-nonce | 7872228254638bc3ca4c314bc03750bc8a74e717078895a078f997371cb6ac38 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDQjQ2OkZBQUI1OjM1Njc1Nzo0NjBBMkU6NkE1OTc4REQiLCJ2aXNpdG9yX2lkIjoiMTI4ODA1NzIyNzgxNjA0MDY2OSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9 |
| visitor-hmac | 0bca3568f90636d18e5a61a076f7a4c7b3ab8b4116f65c2a6675eae8742f11a7 |
| hovercard-subject-tag | issue:3176263287 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/modelcontextprotocol/python-sdk/1027/issue_layout |
| twitter:image | https://opengraph.githubassets.com/1444af88834ec3ac749e8b3a8d2828d89b8d39ca7d45134cfbd87e6c9bca75b9/modelcontextprotocol/python-sdk/issues/1027 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/1444af88834ec3ac749e8b3a8d2828d89b8d39ca7d45134cfbd87e6c9bca75b9/modelcontextprotocol/python-sdk/issues/1027 |
| og:image:alt | Initial Checks I confirm that I'm using the latest version of MCP Python SDK I confirm that I searched for my issue in https://github.com/modelcontextprotocol/python-sdk/issues before opening this ... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | ScatterTemple |
| hostname | github.com |
| expected-hostname | github.com |
| None | a540949572872b935b393b36db38922db390ae71c859537d741b8f3eb7e545b5 |
| turbo-cache-control | no-preview |
| go-import | github.com/modelcontextprotocol/python-sdk git https://github.com/modelcontextprotocol/python-sdk.git |
| octolytics-dimension-user_id | 182288589 |
| octolytics-dimension-user_login | modelcontextprotocol |
| octolytics-dimension-repository_id | 862584018 |
| octolytics-dimension-repository_nwo | modelcontextprotocol/python-sdk |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 862584018 |
| octolytics-dimension-repository_network_root_nwo | modelcontextprotocol/python-sdk |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 624bb50a7497aa346bef8cc3743af408a9ea10ca |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width