mcp-use TypeScript API
    Preparing search index...

    Interface RpcLogEntry

    One JSON-RPC message captured by the React transport logger.

    interface RpcLogEntry {
        direction: "send" | "receive";
        message: JSONRPCMessage;
        serverId: string;
        timestamp: string;
    }
    Index
    direction: "send" | "receive"

    Message direction relative to the client.

    message: JSONRPCMessage

    Captured JSON-RPC message.

    serverId: string

    Identifier of the server that sent or received the message.

    timestamp: string

    ISO 8601 timestamp recorded when the message was observed.