from typing import Any import anyio import pytest import mcp.types as types from mcp import Client from mcp.client.session import ClientSession from mcp.server.lowlevel.server import Server from mcp.server.session import ServerSession from mcp.shared.context import RequestContext from mcp.shared.exceptions import MCPError from mcp.shared.memory import create_client_server_memory_streams from mcp.shared.message import SessionMessage from mcp.types import ( CancelledNotification, CancelledNotificationParams, EmptyResult, ErrorData, JSONRPCError, JSONRPCRequest, JSONRPCResponse, TextContent, ) @pytest.mark.anyio async def test_in_flight_requests_cleared_after_completion(): """Verify that _in_flight is empty after all requests complete.""" server = Server(name="test server") async with Client(server) as client: # Send a request and wait for response response = await client.send_ping() assert isinstance(response, EmptyResult) # Verify _in_flight is empty assert len(client.session._in_flight) == 0 @pytest.mark.anyio async def test_request_cancellation(): """Test that requests can be cancelled while in-flight.""" ev_tool_called = anyio.Event() ev_cancelled = anyio.Event() request_id = None # Define handlers async def handle_call_tool( ctx: RequestContext[ServerSession, Any, Any], params: types.CallToolRequestParams, ) -> types.CallToolResult: nonlocal request_id, ev_tool_called if params.name == "slow_tool": request_id = ctx.request_id ev_tool_called.set() await anyio.sleep(10) # Long enough to ensure we can cancel return types.CallToolResult(content=[]) # pragma: no cover raise ValueError(f"Unknown tool: {params.name}") # pragma: no cover async def handle_list_tools( ctx: RequestContext[ServerSession, Any, Any], params: types.PaginatedRequestParams | None, ) -> types.ListToolsResult: return types.ListToolsResult( tools=[ types.Tool( name="slow_tool", description="A slow tool that takes 10 seconds to complete", inputSchema={}, ) ] ) # Create a server with handlers server = Server( name="TestSessionServer", on_call_tool=handle_call_tool, on_list_tools=handle_list_tools, ) async def make_request(client: Client): nonlocal ev_cancelled try: await client.session.send_request( types.CallToolRequest( params=types.CallToolRequestParams(name="slow_tool", arguments={}), ), types.CallToolResult, ) pytest.fail("Request should have been cancelled") # pragma: no cover except MCPError as e: # Expected - request was cancelled assert "Request cancelled" in str(e) ev_cancelled.set() async with Client(server) as client: async with anyio.create_task_group() as tg: # pragma: no branch tg.start_soon(make_request, client) # Wait for the request to be in-flight with anyio.fail_after(1): # Timeout after 1 second await ev_tool_called.wait() # Send cancellation notification assert request_id is not None await client.session.send_notification( CancelledNotification(params=CancelledNotificationParams(request_id=request_id)) ) # Give cancellation time to process with anyio.fail_after(1): # pragma: no branch await ev_cancelled.wait() @pytest.mark.anyio async def test_response_id_type_mismatch_string_to_int(): """Test that responses with string IDs are correctly matched to requests sent with integer IDs. This handles the case where a server returns "id": "0" (string) but the client sent "id": 0 (integer). Without ID type normalization, this would cause a timeout. """ ev_response_received = anyio.Event() result_holder: list[types.EmptyResult] = [] async with create_client_server_memory_streams() as (client_streams, server_streams): client_read, client_write = client_streams server_read, server_write = server_streams async def mock_server(): """Receive a request and respond with a string ID instead of integer.""" message = await server_read.receive() assert isinstance(message, SessionMessage) root = message.message assert isinstance(root, JSONRPCRequest) # Get the original request ID (which is an integer) request_id = root.id assert isinstance(request_id, int), f"Expected int, got {type(request_id)}" # Respond with the ID as a string (simulating a buggy server) response = JSONRPCResponse( jsonrpc="2.0", id=str(request_id), # Convert to string to simulate mismatch result={}, ) await server_write.send(SessionMessage(message=response)) async def make_request(client_session: ClientSession): nonlocal result_holder # Send a ping request (uses integer ID internally) result = await client_session.send_ping() result_holder.append(result) ev_response_received.set() async with ( anyio.create_task_group() as tg, ClientSession(read_stream=client_read, write_stream=client_write) as client_session, ): tg.start_soon(mock_server) tg.start_soon(make_request, client_session) with anyio.fail_after(2): # pragma: no branch await ev_response_received.wait() assert len(result_holder) == 1 assert isinstance(result_holder[0], EmptyResult) @pytest.mark.anyio async def test_error_response_id_type_mismatch_string_to_int(): """Test that error responses with string IDs are correctly matched to requests sent with integer IDs. This handles the case where a server returns an error with "id": "0" (string) but the client sent "id": 0 (integer). """ ev_error_received = anyio.Event() error_holder: list[MCPError | Exception] = [] async with create_client_server_memory_streams() as (client_streams, server_streams): client_read, client_write = client_streams server_read, server_write = server_streams async def mock_server(): """Receive a request and respond with an error using a string ID.""" message = await server_read.receive() assert isinstance(message, SessionMessage) root = message.message assert isinstance(root, JSONRPCRequest) request_id = root.id assert isinstance(request_id, int) # Respond with an error, using the ID as a string error_response = JSONRPCError( jsonrpc="2.0", id=str(request_id), # Convert to string to simulate mismatch error=ErrorData(code=-32600, message="Test error"), ) await server_write.send(SessionMessage(message=error_response)) async def make_request(client_session: ClientSession): nonlocal error_holder try: await client_session.send_ping() pytest.fail("Expected MCPError to be raised") # pragma: no cover except MCPError as e: error_holder.append(e) ev_error_received.set() async with ( anyio.create_task_group() as tg, ClientSession(read_stream=client_read, write_stream=client_write) as client_session, ): tg.start_soon(mock_server) tg.start_soon(make_request, client_session) with anyio.fail_after(2): # pragma: no branch await ev_error_received.wait() assert len(error_holder) == 1 assert "Test error" in str(error_holder[0]) @pytest.mark.anyio async def test_response_id_non_numeric_string_no_match(): """Test that responses with non-numeric string IDs don't incorrectly match integer request IDs. If a server returns "id": "abc" (non-numeric string), it should not match a request sent with "id": 0 (integer). """ ev_timeout = anyio.Event() async with create_client_server_memory_streams() as (client_streams, server_streams): client_read, client_write = client_streams server_read, server_write = server_streams async def mock_server(): """Receive a request and respond with a non-numeric string ID.""" message = await server_read.receive() assert isinstance(message, SessionMessage) # Respond with a non-numeric string ID (should not match) response = JSONRPCResponse( jsonrpc="2.0", id="not_a_number", # Non-numeric string result={}, ) await server_write.send(SessionMessage(message=response)) async def make_request(client_session: ClientSession): try: # Use a short timeout since we expect this to fail await client_session.send_request( types.PingRequest(), types.EmptyResult, request_read_timeout_seconds=0.5, ) pytest.fail("Expected timeout") # pragma: no cover except MCPError as e: assert "Timed out" in str(e) ev_timeout.set() async with ( anyio.create_task_group() as tg, ClientSession(read_stream=client_read, write_stream=client_write) as client_session, ): tg.start_soon(mock_server) tg.start_soon(make_request, client_session) with anyio.fail_after(2): # pragma: no branch await ev_timeout.wait() @pytest.mark.anyio async def test_connection_closed(): """Test that pending requests are cancelled when the connection is closed remotely.""" ev_closed = anyio.Event() ev_response = anyio.Event() async with create_client_server_memory_streams() as (client_streams, server_streams): client_read, client_write = client_streams server_read, server_write = server_streams async def make_request(client_session: ClientSession): """Send a request in a separate task""" nonlocal ev_response try: # any request will do await client_session.initialize() pytest.fail("Request should have errored") # pragma: no cover except MCPError as e: # Expected - request errored assert "Connection closed" in str(e) ev_response.set() async def mock_server(): """Wait for a request, then close the connection""" nonlocal ev_closed # Wait for a request await server_read.receive() # Close the connection, as if the server exited server_write.close() server_read.close() ev_closed.set() async with ( anyio.create_task_group() as tg, ClientSession(read_stream=client_read, write_stream=client_write) as client_session, ): tg.start_soon(make_request, client_session) tg.start_soon(mock_server) with anyio.fail_after(1): await ev_closed.wait() with anyio.fail_after(1): # pragma: no branch await ev_response.wait()