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

    Type Alias AgentResponse

    AgentResponse:
        | {
            id: RequestId;
            result: | InitializeResponse
            | AuthenticateResponse
            | ListProvidersResponse
            | SetProviderResponse
            | DisableProviderResponse
            | LogoutResponse
            | NewSessionResponse
            | LoadSessionResponse
            | ListSessionsResponse
            | DeleteSessionResponse
            | ForkSessionResponse
            | ResumeSessionResponse
            | CloseSessionResponse
            | SetSessionModeResponse
            | SetSessionConfigOptionResponse
            | PromptResponse
            | StartNesResponse
            | SuggestNesResponse
            | CloseNesResponse
            | ExtResponse
            | MessageMcpResponse;
        }
        | { id: RequestId; error: Error }

    A JSON-RPC response object.

    Type Declaration