Initial Checks
Description
When using the low-level Server API (mcp.server.lowlevel.Server) with stdio transport, sending progress notifications during request handling causes the server to hang indefinitely and never send the final response.
What I am seeing:
- Server successfully sends progress notification via
write_stream.send() - Server handler returns
CallToolResult - The final response is never sent to the client
- Client times out waiting for response
- Server remains blocked and time out eventually
Example Code
importasynciofrommcp.server.lowlevelimportServerfrommcp.server.stdioimportstdio_serverfrommcp.typesimport*server=Server("progress-bug-demo")
@server.list_tools()asyncdefhandle_list_tools() ->list[Tool]:
return [Tool(
name="test_tool",
description="Demonstrates the bug",
inputSchema={"type": "object", "properties": {}}
)]
@server.call_tool()asyncdefhandle_call_tool(name: str, arguments: dict) ->list[TextContent]:
ctx=server.request_contextprogress_token=ctx.meta.progressTokenifctx.metaelseNoneifprogress_token:
# This causes the server to hangawaitctx.session.send_progress_notification(
progress_token=progress_token,
progress=0.5,
total=1.0,
message="Working..."
)
# This response is never sent due to the hangreturn [TextContent(type="text", text="Task completed!")]
asyncdefmain():
asyncwithstdio_server() as (read_stream, write_stream):
awaitserver.run(
read_stream,
write_stream,
server.create_initialization_options()
)
if__name__=="__main__":
asyncio.run(main())Python & MCP Python SDK
MCP: 1.10.1
Python: 3.12.6
From deeper debugging looks like buffer size is the problem : https://github.com/modelcontextprotocol/python-sdk/blob/main/src/mcp/server/stdio.py#L57
Have to test locally if increasing it will most likely fix the issue and if its causing more problems than just fixing this.
Initial Checks
Description
When using the low-level Server API (
mcp.server.lowlevel.Server) with stdio transport, sending progress notifications during request handling causes the server to hang indefinitely and never send the final response.What I am seeing:
write_stream.send()CallToolResultExample Code
Python & MCP Python SDK
From deeper debugging looks like buffer size is the problem : https://github.com/modelcontextprotocol/python-sdk/blob/main/src/mcp/server/stdio.py#L57
Have to test locally if increasing it will most likely fix the issue and if its causing more problems than just fixing this.