19 lines
514 B
Python
19 lines
514 B
Python
from dataclasses import dataclass
|
|
from typing import Any, Generic
|
|
|
|
from typing_extensions import TypeVar
|
|
|
|
from mcp.shared.session import BaseSession
|
|
from mcp.types import RequestId, RequestParams
|
|
|
|
SessionT = TypeVar("SessionT", bound=BaseSession[Any, Any, Any, Any, Any])
|
|
LifespanContextT = TypeVar("LifespanContextT")
|
|
|
|
|
|
@dataclass
|
|
class RequestContext(Generic[SessionT, LifespanContextT]):
|
|
request_id: RequestId
|
|
meta: RequestParams.Meta | None
|
|
session: SessionT
|
|
lifespan_context: LifespanContextT
|