AxMCPTransportRecordingEntry
type AxMCPTransportRecordingEntry =
| {
direction: "request";
message: AxMCPJSONRPCRequest<unknown>;
response: AxMCPJSONRPCResponse<unknown>;
}
| {
direction: "notification";
message: AxMCPJSONRPCNotification;
}
| {
direction: "response";
message: AxMCPJSONRPCResponse;
}
| {
direction: "inbound";
message: AxMCPJSONRPCMessage;
};