Skip to content

session

Compatibility names that outlived the removed v1 session layer (BaseSession).

RequestResponder

Bases: Generic[ReceiveRequestT, SendResultT]

Typing stub for the v1 responder; the SDK never instantiates it.

Source code in src/mcp/shared/session.py
15
16
17
18
19
20
21
class RequestResponder(Generic[ReceiveRequestT, SendResultT]):
    """Typing stub for the v1 responder; the SDK never instantiates it."""

    request_id: RequestId
    request_meta: RequestParamsMeta | None
    request: ReceiveRequestT
    message_metadata: MessageMetadata