René's URL Explorer Experiment


Title: Duplicate `initialize` with changed parameters can overwrite `ServerSession.client_params` · Issue #2605 · modelcontextprotocol/python-sdk · GitHub

Open Graph Title: Duplicate `initialize` with changed parameters can overwrite `ServerSession.client_params` · Issue #2605 · modelcontextprotocol/python-sdk

X Title: Duplicate `initialize` with changed parameters can overwrite `ServerSession.client_params` · Issue #2605 · 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 After a normal MCP ini...

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/2605

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Duplicate `initialize` with changed parameters can overwrite `ServerSession.client_params`","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\nAfter a normal MCP initialization flow, a Python SDK server accepts another `initialize` request on the same live connection/session and returns a normal `initialize` result.\n\nI agree that the spec does not explicitly say every repeated `initialize` must be rejected. My concern is narrower: after the session has already moved into normal operation, a later same-session `initialize` with different parameters can update the server's stored client initialization parameters.\n\nThe MCP lifecycle documentation describes initialization as the first client/server interaction and says the operation phase uses the negotiated protocol version and capabilities. In that model, silently changing the stored client identity/capabilities/protocol version after operation has begun seems surprising unless the SDK intentionally supports same-session renegotiation.\n\n- `src/mcp/server/session.py` stores the client initialization request in `ServerSession._client_params`.\n- `ServerSession.client_params` exposes that value.\n- In both the stable release and the `main` snapshot I tested, the `InitializeRequest` handler assigns `self._client_params = params`.\n- `ServerSession.check_client_capability()` later reads `self._client_params.capabilities`, so a duplicate `initialize` with different `capabilities` can affect capability-gated server logic.\n\n### What I observed\n\nReproduced on stable `v1.27.1` (`77431ebe7dda9ed0c61451b22d3e7f8d981bc092`):\n\n- `stdio`: a second `initialize` was accepted after `notifications/initialized`; a later `ping` still succeeded.\n- stateful Streamable HTTP: a second `initialize` was accepted after `notifications/initialized`; a later `ping` still succeeded.\n- stateless Streamable HTTP: a second `initialize` was accepted after `notifications/initialized`; a later `ping` still succeeded.\n\nFor stateful Streamable HTTP on `v1.27.1`, I added a local diagnostic tool that reads `ctx.session.client_params` before and after the duplicate `initialize` on the same session:\n\n| Duplicate `initialize` parameters | Observed result |\n|---|---|\n| Same parameters | No state change |\n| Changed `clientInfo` and `capabilities` | `client_params.clientInfo` and `client_params.capabilities` changed |\n| Older `protocolVersion` (`2024-11-05`) | `client_params.protocolVersion` and `client_params.clientInfo` changed |\n\nOn the frozen `main` snapshot (`161834d4aee2633c42d3976c8f8751b6c4d947d5`), the same duplicate-initialize acceptance still reproduced. My diagnostic snapshot directly observed `client_params.capabilities` changing after a duplicate `initialize` with changed capabilities on both `stdio` and stateful Streamable HTTP.\n\n### Expected behavior\n\nIf same-session duplicate initialization is not intended, I would expect the server to reject the later `initialize` after normal operation has begun, for example with a JSON-RPC `-32600 Invalid Request` error.\n\nIf this tolerant behavior is intentional, I think it should be either:\n\n- a no-op once the session has already initialized, especially for changed parameters, or\n- documented as same-session renegotiation, including whether `ServerSession.client_params`, client capabilities, client identity, and protocol version are allowed to change.\n\n### Example Code\n\n```Python\nimport json\n\ntry:\n    # Current main branch naming.\n    from mcp.server.mcpserver import Context, MCPServer\nexcept ImportError:\n    # Latest stable release naming.\n    from mcp.server.fastmcp import Context, FastMCP as MCPServer\n\n\nmcp = MCPServer(\"dup-init-repro\")\n\n\ndef field(obj, *names):\n    if obj is None:\n        return None\n    for name in names:\n        if hasattr(obj, name):\n            return getattr(obj, name)\n    return None\n\n\ndef dump(value):\n    if value is None:\n        return None\n    if hasattr(value, \"model_dump\"):\n        return value.model_dump(mode=\"json\", by_alias=True)\n    return value\n\n\n@mcp.tool()\nasync def session_snapshot(ctx: Context) -\u003e str:\n    params = ctx.session.client_params\n    return json.dumps(\n        {\n            \"protocolVersion\": field(params, \"protocolVersion\", \"protocol_version\"),\n            \"clientInfo\": dump(field(params, \"clientInfo\", \"client_info\")),\n            \"clientCapabilities\": dump(field(params, \"capabilities\")),\n        },\n        separators=(\",\", \":\"),\n        default=str,\n    )\n\n\nif __name__ == \"__main__\":\n    mcp.run(transport=\"streamable-http\")\n\n'''\nRequest sequence:\n\n1. Start the server.\n2. Send a normal `initialize`.\n3. Send `notifications/initialized`.\n4. Call the `session_snapshot` tool and record the returned JSON.\n5. Send another `initialize` on the same live session, but change `clientInfo` and/or `capabilities`.\n6. Call `session_snapshot` again on the same session.\n\nOn `v1.27.1`, the second snapshot reflects the changed `clientInfo` / `capabilities`. On the `main` snapshot I tested, the second snapshot still reflects changed `capabilities`.\n'''\n```\n\n### Python \u0026 MCP Python SDK\n\n```Text\n- Python: `3.12.3`\n- MCP Python SDK: `mcp==1.27.1` (`v1.27.1`, `77431ebe7dda9ed0c61451b22d3e7f8d981bc092`)\n- Also reproduced on `main` snapshot `161834d4aee2633c42d3976c8f8751b6c4d947d5` (`v1.25.0-159-g161834d4`, pinned 2026-05-11)\n```","author":{"url":"https://github.com/cclabadmin","@type":"Person","name":"cclabadmin"},"datePublished":"2026-05-15T13:34:52.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/2605/python-sdk/issues/2605"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:9e2c948d-e53a-e332-bb75-01cd55236f99
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE96A:102E0A:176332D:1F90F46:6A5968C0
html-safe-nonce53ea25d11728c0b369e354f775a54ee1b29d20395d7e924ff36c6c6f517cbcba
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFOTZBOjEwMkUwQToxNzYzMzJEOjFGOTBGNDY6NkE1OTY4QzAiLCJ2aXNpdG9yX2lkIjoiNzkwNDMwMjA1MDkzNzAxODI0IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac90715076c79777ee8c8a6a0511e121c092893e89e08b28c85bb23b0ef8b47b43
hovercard-subject-tagissue:4454307519
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/2605/issue_layout
twitter:imagehttps://opengraph.githubassets.com/19c7d3aba7f857d5a9974626e0c4aa1f5e12851179424d6ecc17b1ed3d1ef869/modelcontextprotocol/python-sdk/issues/2605
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/19c7d3aba7f857d5a9974626e0c4aa1f5e12851179424d6ecc17b1ed3d1ef869/modelcontextprotocol/python-sdk/issues/2605
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:usernamecclabadmin
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
release4aa391d605ba491481565840251a4b0fec3f4807
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/modelcontextprotocol/python-sdk/issues/2605#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fpython-sdk%2Fissues%2F2605
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%2F2605
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/2605
Reloadhttps://github.com/modelcontextprotocol/python-sdk/issues/2605
Reloadhttps://github.com/modelcontextprotocol/python-sdk/issues/2605
Please reload this pagehttps://github.com/modelcontextprotocol/python-sdk/issues/2605
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
#2606https://github.com/modelcontextprotocol/python-sdk/pull/2606
#2999https://github.com/modelcontextprotocol/python-sdk/pull/2999
Duplicate initialize with changed parameters can overwrite ServerSession.client_paramshttps://github.com/modelcontextprotocol/python-sdk/issues/2605#top
#2606https://github.com/modelcontextprotocol/python-sdk/pull/2606
#2999https://github.com/modelcontextprotocol/python-sdk/pull/2999
P2Moderate issues affecting some users, edge cases, potentially valuable featurehttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22P2%22
bugSomething isn't workinghttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22bug%22
fix proposedBot has a verified fix diff in the commenthttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22fix%20proposed%22
ready for workEnough information for someone to start working onhttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22ready%20for%20work%22
https://github.com/cclabadmin
cclabadminhttps://github.com/cclabadmin
on May 15, 2026https://github.com/modelcontextprotocol/python-sdk/issues/2605#issue-4454307519
https://github.com/modelcontextprotocol/python-sdk/issueshttps://github.com/modelcontextprotocol/python-sdk/issues
P2Moderate issues affecting some users, edge cases, potentially valuable featurehttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22P2%22
bugSomething isn't workinghttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22bug%22
fix proposedBot has a verified fix diff in the commenthttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22fix%20proposed%22
ready for workEnough information for someone to start working onhttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22ready%20for%20work%22
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.