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

    Type Alias AgentHandlerContext<Params>

    Context passed to agent-side request and notification handlers.

    type AgentHandlerContext<Params> = {
        params: Params;
        signal: AbortSignal;
        client: AgentContext;
    }

    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.

    client: AgentContext

    Typed client context for calling client-side ACP methods.