modelcontextprotocol / modelcontextprotocol/python-sdk
Duplicate `initialize` with changed parameters can overwrite `ServerSession.client_params`
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 24.3k
- 派生
- 4k
- 平均合并
- 1 天 1 小时
- 30 天内合并 PR
- 31
描述
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 initialization flow, a Python SDK server accepts another initialize request on the same live connection/session and returns a normal initialize result.
I 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.
The 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.
src/mcp/server/session.pystores the client initialization request inServerSession._client_params.ServerSession.client_paramsexposes that value.- In both the stable release and the
mainsnapshot I tested, theInitializeRequesthandler assignsself._client_params = params. ServerSession.check_client_capability()later readsself._client_params.capabilities, so a duplicateinitializewith differentcapabilitiescan affect capability-gated server logic.
What I observed
Reproduced on stable v1.27.1 (77431ebe7dda9ed0c61451b22d3e7f8d981bc092):
stdio: a secondinitializewas accepted afternotifications/initialized; a laterpingstill succeeded.- stateful Streamable HTTP: a second
initializewas accepted afternotifications/initialized; a laterpingstill succeeded. - stateless Streamable HTTP: a second
initializewas accepted afternotifications/initialized; a laterpingstill succeeded.
For 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:
Duplicate initialize parameters |
Observed result |
|---|---|
| Same parameters | No state change |
Changed clientInfo and capabilities |
client_params.clientInfo and client_params.capabilities changed |
Older protocolVersion (2024-11-05) |
client_params.protocolVersion and client_params.clientInfo changed |
On 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.
Expected behavior
If 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.
If this tolerant behavior is intentional, I think it should be either:
- a no-op once the session has already initialized, especially for changed parameters, or
- documented as same-session renegotiation, including whether
ServerSession.client_params, client capabilities, client identity, and protocol version are allowed to change.
Example Code
import json
try:
# Current main branch naming.
from mcp.server.mcpserver import Context, MCPServer
except ImportError:
# Latest stable release naming.
from mcp.server.fastmcp import Context, FastMCP as MCPServer
mcp = MCPServer("dup-init-repro")
def field(obj, *names):
if obj is None:
return None
for name in names:
if hasattr(obj, name):
return getattr(obj, name)
return None
def dump(value):
if value is None:
return None
if hasattr(value, "model_dump"):
return value.model_dump(mode="json", by_alias=True)
return value
@mcp.tool()
async def session_snapshot(ctx: Context) -> str:
params = ctx.session.client_params
return json.dumps(
{
"protocolVersion": field(params, "protocolVersion", "protocol_version"),
"clientInfo": dump(field(params, "clientInfo", "client_info")),
"clientCapabilities": dump(field(params, "capabilities")),
},
separators=(",", ":"),
default=str,
)
if __name__ == "__main__":
mcp.run(transport="streamable-http")
'''
Request sequence:
1. Start the server.
2. Send a normal `initialize`.
3. Send `notifications/initialized`.
4. Call the `session_snapshot` tool and record the returned JSON.
5. Send another `initialize` on the same live session, but change `clientInfo` and/or `capabilities`.
6. Call `session_snapshot` again on the same session.
On `v1.27.1`, the second snapshot reflects the changed `clientInfo` / `capabilities`. On the `main` snapshot I tested, the second snapshot still reflects changed `capabilities`.
'''
Python & MCP Python SDK
- Python: `3.12.3`
- MCP Python SDK: `mcp==1.27.1` (`v1.27.1`, `77431ebe7dda9ed0c61451b22d3e7f8d981bc092`)
- Also reproduced on `main` snapshot `161834d4aee2633c42d3976c8f8751b6c4d947d5` (`v1.25.0-159-g161834d4`, pinned 2026-05-11)
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 src/mcp/server/session.py 开始,重点查看 InitializeRequest 处理器和 ServerSession.client_params。在 stdio 以及有状态或无状态的 Streamable HTTP 中重现 issue 所描述的重复初始化序列,然后检查之后如何读取客户端参数。完成的标准是,所选择的重复初始化行为保持一致,并且不会意外覆盖客户端参数。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- api, backend
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 活跃
- 描述清晰度
- 基本清楚
- 新手友好度
- 48/100