mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-11 08:09:10 +02:00
* fix: restore request context in StatefulProxyClient handlers StatefulProxyClient reuses sessions across requests, so its receive-loop task inherits a stale request_ctx ContextVar from the first request. Server-initiated messages (elicitation, sampling, etc.) that depend on related_request_id routing get sent to a closed stream and hang forever. Closes #3169 * chore: Update SDK documentation --------- Co-authored-by: marvin-context-protocol[bot] <225465937+marvin-context-protocol[bot]@users.noreply.github.com>
201 lines
7.2 KiB
Python
201 lines
7.2 KiB
Python
import asyncio
|
|
from dataclasses import dataclass
|
|
|
|
import pytest
|
|
from anyio import create_task_group
|
|
from mcp.types import LoggingLevel
|
|
|
|
from fastmcp import Client, Context, FastMCP
|
|
from fastmcp.client.elicitation import ElicitResult
|
|
from fastmcp.client.logging import LogMessage
|
|
from fastmcp.client.transports import FastMCPTransport
|
|
from fastmcp.exceptions import ToolError
|
|
from fastmcp.server.elicitation import AcceptedElicitation
|
|
from fastmcp.server.providers.proxy import FastMCPProxy, StatefulProxyClient
|
|
from fastmcp.utilities.tests import find_available_port, run_server_async
|
|
|
|
|
|
@pytest.fixture
|
|
def fastmcp_server():
|
|
mcp = FastMCP("TestServer")
|
|
|
|
states: dict[int, int] = {}
|
|
|
|
@mcp.tool
|
|
async def log(
|
|
message: str, level: LoggingLevel, logger: str, context: Context
|
|
) -> None:
|
|
await context.log(message=message, level=level, logger_name=logger)
|
|
|
|
@mcp.tool
|
|
async def stateful_put(value: int, context: Context) -> None:
|
|
"""put a value associated with the server session"""
|
|
key = id(context.session)
|
|
states[key] = value
|
|
|
|
@mcp.tool
|
|
async def stateful_get(context: Context) -> int:
|
|
"""get the value associated with the server session"""
|
|
key = id(context.session)
|
|
try:
|
|
return states[key]
|
|
except KeyError:
|
|
raise ToolError("Value not found")
|
|
|
|
return mcp
|
|
|
|
|
|
@pytest.fixture
|
|
async def stateful_proxy_server(fastmcp_server: FastMCP):
|
|
client = StatefulProxyClient(transport=FastMCPTransport(fastmcp_server))
|
|
return FastMCPProxy(client_factory=client.new_stateful)
|
|
|
|
|
|
@pytest.fixture
|
|
async def stateless_server(stateful_proxy_server: FastMCP):
|
|
port = find_available_port()
|
|
url = f"http://127.0.0.1:{port}/mcp/"
|
|
|
|
task = asyncio.create_task(
|
|
stateful_proxy_server.run_http_async(
|
|
host="127.0.0.1", port=port, stateless_http=True
|
|
)
|
|
)
|
|
await stateful_proxy_server._started.wait()
|
|
yield url
|
|
task.cancel()
|
|
try:
|
|
await task
|
|
except asyncio.CancelledError:
|
|
pass
|
|
|
|
|
|
class TestStatefulProxyClient:
|
|
async def test_concurrent_log_requests_no_mixing(
|
|
self, stateful_proxy_server: FastMCP
|
|
):
|
|
"""Test that concurrent log requests don't mix handlers (fixes #1068)."""
|
|
results: dict[str, LogMessage] = {}
|
|
|
|
async def log_handler_a(message: LogMessage) -> None:
|
|
results["logger_a"] = message
|
|
|
|
async def log_handler_b(message: LogMessage) -> None:
|
|
results["logger_b"] = message
|
|
|
|
async with (
|
|
Client(stateful_proxy_server, log_handler=log_handler_a) as client_a,
|
|
Client(stateful_proxy_server, log_handler=log_handler_b) as client_b,
|
|
):
|
|
async with create_task_group() as tg:
|
|
tg.start_soon(
|
|
client_a.call_tool,
|
|
"log",
|
|
{"message": "Hello, world!", "level": "info", "logger": "a"},
|
|
)
|
|
tg.start_soon(
|
|
client_b.call_tool,
|
|
"log",
|
|
{"message": "Hello, world!", "level": "info", "logger": "b"},
|
|
)
|
|
|
|
assert results["logger_a"].logger == "a"
|
|
assert results["logger_b"].logger == "b"
|
|
|
|
async def test_stateful_proxy(self, stateful_proxy_server: FastMCP):
|
|
"""Test that the state shared across multiple calls for the same client (fixes #959)."""
|
|
async with Client(stateful_proxy_server) as client:
|
|
with pytest.raises(ToolError, match="Value not found"):
|
|
await client.call_tool("stateful_get", {})
|
|
|
|
await client.call_tool("stateful_put", {"value": 1})
|
|
result = await client.call_tool("stateful_get", {})
|
|
assert result.data == 1
|
|
|
|
async def test_stateless_proxy(self, stateless_server: str):
|
|
"""Test that the state will not be shared across different calls,
|
|
even if they are from the same client."""
|
|
async with Client(stateless_server) as client:
|
|
await client.call_tool("stateful_put", {"value": 1})
|
|
|
|
with pytest.raises(ToolError, match="Value not found"):
|
|
await client.call_tool("stateful_get", {})
|
|
|
|
async def test_multi_proxies_no_mixing(self):
|
|
"""Test that the stateful proxy client won't be mixed in multi-proxies sessions."""
|
|
mcp_a, mcp_b = FastMCP(), FastMCP()
|
|
|
|
@mcp_a.tool
|
|
def tool_a() -> str:
|
|
return "a"
|
|
|
|
@mcp_b.tool
|
|
def tool_b() -> str:
|
|
return "b"
|
|
|
|
proxy_mcp_a = FastMCPProxy(
|
|
client_factory=StatefulProxyClient(mcp_a).new_stateful
|
|
)
|
|
proxy_mcp_b = FastMCPProxy(
|
|
client_factory=StatefulProxyClient(mcp_b).new_stateful
|
|
)
|
|
multi_proxy_mcp = FastMCP()
|
|
multi_proxy_mcp.mount(proxy_mcp_a, namespace="a")
|
|
multi_proxy_mcp.mount(proxy_mcp_b, namespace="b")
|
|
|
|
async with Client(multi_proxy_mcp) as client:
|
|
result_a = await client.call_tool("a_tool_a", {})
|
|
result_b = await client.call_tool("b_tool_b", {})
|
|
assert result_a.data == "a"
|
|
assert result_b.data == "b"
|
|
|
|
@pytest.mark.timeout(10)
|
|
async def test_stateful_proxy_elicitation_over_http(self):
|
|
"""Elicitation through a stateful proxy over HTTP must not hang.
|
|
|
|
When StatefulProxyClient reuses a session, the receive-loop task
|
|
inherits a stale request_ctx ContextVar from the first request.
|
|
The streamable-HTTP transport uses related_request_id to route
|
|
server-initiated messages (like elicitation) back to the correct
|
|
HTTP response stream. A stale request_id routes to a closed
|
|
stream, causing the elicitation to hang forever.
|
|
|
|
This test runs the proxy over HTTP (not in-process) so the
|
|
transport's related_request_id routing is exercised.
|
|
"""
|
|
|
|
@dataclass
|
|
class Person:
|
|
name: str
|
|
|
|
backend = FastMCP("backend")
|
|
|
|
@backend.tool
|
|
async def ask_name(ctx: Context) -> str:
|
|
result = await ctx.elicit("What is your name?", response_type=Person)
|
|
if isinstance(result, AcceptedElicitation):
|
|
assert isinstance(result.data, Person)
|
|
return f"Hello, {result.data.name}!"
|
|
return "declined"
|
|
|
|
stateful_client = StatefulProxyClient(backend)
|
|
proxy = FastMCPProxy(
|
|
client_factory=stateful_client.new_stateful,
|
|
name="proxy",
|
|
)
|
|
|
|
async def elicitation_handler(message, response_type, params, ctx):
|
|
return ElicitResult(action="accept", content=response_type(name="Alice"))
|
|
|
|
# Run the proxy over HTTP so the transport uses
|
|
# related_request_id routing for server-initiated messages.
|
|
async with run_server_async(proxy) as proxy_url:
|
|
async with Client(
|
|
proxy_url, elicitation_handler=elicitation_handler
|
|
) as client:
|
|
result1 = await client.call_tool("ask_name", {})
|
|
assert result1.data == "Hello, Alice!"
|
|
# Second call reuses the stateful session — this is the
|
|
# one that would hang without the fix.
|
|
result2 = await client.call_tool("ask_name", {})
|
|
assert result2.data == "Hello, Alice!"
|