from dataclasses import dataclass from typing import Generic, TypeVar from mcp_python.shared.session import BaseSession from mcp_python.types import RequestId, RequestParams SessionT = TypeVar("SessionT", bound=BaseSession) @dataclass class RequestContext(Generic[SessionT]): request_id: RequestId meta: RequestParams.Meta | None session: SessionT