modelcontextprotocol / modelcontextprotocol/python-sdk
Parameterized Context loses request state in resource and prompt handlers
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 24.3k
- 派生
- 4k
- 平均合并
- 1 天 1 小时
- 30 天内合并 PR
- 31
描述
Description
A resource-template or prompt handler annotated with a parameterized Context[LifespanContextT] receives a different Context object from the one the server injected. The reconstructed object has none of the private request state, so accessing ctx.request_context, ctx.session, ctx.request_id, or lifespan state fails with:
ValueError: Context is not available outside of a request
The equivalent tool handler works, and handlers annotated with unparameterized Context happen to work. This makes the documented typed lifespan-context pattern unusable specifically in dynamic resources and prompts.
Minimal reproduction
from collections.abc import AsyncIterator
from contextlib import asynccontextmanager
import anyio
from mcp.client import Client
from mcp.server.mcpserver import Context, MCPServer
@asynccontextmanager
async def lifespan(_: MCPServer[str]) -> AsyncIterator[str]:
yield "live-state"
async def main() -> None:
server = MCPServer("probe", lifespan=lifespan)
@server.resource("probe://{name}")
async def resource(name: str, ctx: Context[str]) -> str:
return f"{name}:{ctx.request_context.lifespan_context}"
@server.prompt("probe")
async def prompt(name: str, ctx: Context[str]) -> str:
return f"{name}:{ctx.request_context.lifespan_context}"
async with Client(server) as client:
await client.read_resource("probe://value")
await client.get_prompt("probe", {"name": "value"})
anyio.run(main)
Both calls fail. Each should return content containing value:live-state.
Root cause
ResourceTemplate.from_function and Prompt.from_function correctly omit the detected context parameter from their public argument schemas, but then wrap the original handler with pydantic.validate_call. At invocation time they inject the live Context into the wrapped handler, so Pydantic validates it again.
For a generic annotation, Pydantic converts the unparameterized runtime instance into Context[str, Any]. That creates a new model instance and does not carry over Context's private _request_context, _mcp_server, and related attributes:
server-created Context
|
v
validate_call parameter: Context[str]
|
v
new Context[str, Any] instance
|
v
private request state absent
A direct identity probe on current main shows:
Context -> same object, request state present
Context[str] -> new object, request state absent
Tools avoid this because FuncMetadata.call_fn_with_arg_validation validates only client-supplied arguments and passes injected values directly to the raw handler.
Impact
This affects resource templates and prompts that use typed lifespan context, including otherwise valid code following the SDK's generic Context[LifespanContextT] typing. It can also hide in tests that only assert that ctx is non-null rather than reading request-scoped state.
A compatible fix should preserve the existing validation/coercion of client-supplied resource or prompt arguments while passing the server-created context object directly, with its identity and private state intact.
Environment
- MCP Python SDK: 2.0.0 and current
mainata4f4ccd091138771535e17191123f20b30fda68e - Python: 3.12.13
- Pydantic: 2.12.5
AI assistance was used to investigate and draft this report.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 ResourceTemplate.from_function 和 Prompt.from_function 开始,然后将它们的验证路径与 tools 使用的 FuncMetadata.call_fn_with_arg_validation 进行比较。根据最小示例重现 resource 和 prompt 调用,并检查注入的 Context 是否保持其身份和请求状态不变。当客户端参数仍然经过验证,同时服务器创建的 Context 未经修改地到达两个 handler 时,即表示完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- backend-api-design
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 冷清
- 描述清晰度
- 描述清楚
- 新手友好度
- 55/100