René's URL Explorer Experiment


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

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@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-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:75e8a9af-a7a6-42f4-87fa-300d24648c7a
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCB46:FAAB5:356757:460A2E:6A5978DD
html-safe-nonce7872228254638bc3ca4c314bc03750bc8a74e717078895a078f997371cb6ac38
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDQjQ2OkZBQUI1OjM1Njc1Nzo0NjBBMkU6NkE1OTc4REQiLCJ2aXNpdG9yX2lkIjoiMTI4ODA1NzIyNzgxNjA0MDY2OSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac0bca3568f90636d18e5a61a076f7a4c7b3ab8b4116f65c2a6675eae8742f11a7
hovercard-subject-tagissue:3176263287
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/modelcontextprotocol/python-sdk/1027/issue_layout
twitter:imagehttps://opengraph.githubassets.com/1444af88834ec3ac749e8b3a8d2828d89b8d39ca7d45134cfbd87e6c9bca75b9/modelcontextprotocol/python-sdk/issues/1027
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/1444af88834ec3ac749e8b3a8d2828d89b8d39ca7d45134cfbd87e6c9bca75b9/modelcontextprotocol/python-sdk/issues/1027
og:image:altInitial 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:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameScatterTemple
hostnamegithub.com
expected-hostnamegithub.com
Nonea540949572872b935b393b36db38922db390ae71c859537d741b8f3eb7e545b5
turbo-cache-controlno-preview
go-importgithub.com/modelcontextprotocol/python-sdk git https://github.com/modelcontextprotocol/python-sdk.git
octolytics-dimension-user_id182288589
octolytics-dimension-user_loginmodelcontextprotocol
octolytics-dimension-repository_id862584018
octolytics-dimension-repository_nwomodelcontextprotocol/python-sdk
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id862584018
octolytics-dimension-repository_network_root_nwomodelcontextprotocol/python-sdk
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release624bb50a7497aa346bef8cc3743af408a9ea10ca
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/modelcontextprotocol/python-sdk/issues/1027#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fpython-sdk%2Fissues%2F1027
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fpython-sdk%2Fissues%2F1027
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=modelcontextprotocol%2Fpython-sdk
Reloadhttps://github.com/modelcontextprotocol/python-sdk/issues/1027
Reloadhttps://github.com/modelcontextprotocol/python-sdk/issues/1027
Reloadhttps://github.com/modelcontextprotocol/python-sdk/issues/1027
Please reload this pagehttps://github.com/modelcontextprotocol/python-sdk/issues/1027
modelcontextprotocol https://github.com/modelcontextprotocol
python-sdkhttps://github.com/modelcontextprotocol/python-sdk
Notifications https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fpython-sdk
Fork 3.7k https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fpython-sdk
Star 23.6k https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fpython-sdk
Code https://github.com/modelcontextprotocol/python-sdk
Issues 255 https://github.com/modelcontextprotocol/python-sdk/issues
Pull requests 301 https://github.com/modelcontextprotocol/python-sdk/pulls
Actions https://github.com/modelcontextprotocol/python-sdk/actions
Projects https://github.com/modelcontextprotocol/python-sdk/projects
Models https://github.com/modelcontextprotocol/python-sdk/models
Security and quality 6 https://github.com/modelcontextprotocol/python-sdk/security
Insights https://github.com/modelcontextprotocol/python-sdk/pulse
Code https://github.com/modelcontextprotocol/python-sdk
Issues https://github.com/modelcontextprotocol/python-sdk/issues
Pull requests https://github.com/modelcontextprotocol/python-sdk/pulls
Actions https://github.com/modelcontextprotocol/python-sdk/actions
Projects https://github.com/modelcontextprotocol/python-sdk/projects
Models https://github.com/modelcontextprotocol/python-sdk/models
Security and quality https://github.com/modelcontextprotocol/python-sdk/security
Insights https://github.com/modelcontextprotocol/python-sdk/pulse
The cleanup procedure after "yield" in lifespan is unreachable on Windowshttps://github.com/modelcontextprotocol/python-sdk/issues/1027#top
stdio shutdown + win related issueshttps://github.com/modelcontextprotocol/python-sdk/milestone/11
https://github.com/ScatterTemple
ScatterTemplehttps://github.com/ScatterTemple
on Jun 25, 2025https://github.com/modelcontextprotocol/python-sdk/issues/1027#issue-3176263287
https://github.com/modelcontextprotocol/python-sdk/issueshttps://github.com/modelcontextprotocol/python-sdk/issues
stdio shutdown + win related issueshttps://github.com/modelcontextprotocol/python-sdk/milestone/11
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.