llmwire - v2.2.0
    Preparing search index...

    Interface McpTransport

    How messages reach the server. request resolves with the matching response; notify expects none.

    interface McpTransport {
        close?(): Promise<void>;
        notify(msg: JsonRpcRequest): Promise<void>;
        request(msg: JsonRpcRequest): Promise<JsonRpcResponse>;
    }

    Implemented by

    Index