Agent Client Protocol - v1.0.0
    Preparing search index...

    Type Alias ClientHandlerContext<Params>

    Context passed to client-side request and notification handlers.

    type ClientHandlerContext<Params> = {
        params: Params;
        signal: AbortSignal;
        agent: ClientContext;
    }

    Type Parameters

    • Params
    Index

    Properties

    Properties

    params: Params

    Parsed request or notification params.

    signal: AbortSignal

    AbortSignal for the current request, or the connection signal for notifications.

    Typed agent context for calling agent-side ACP methods.