MCP Server Framework - v1.0.0
    Preparing search index...

    Interface TransportHandle

    Lightweight handle returned by transport start functions.

    Replaces the former TransportManager class hierarchy with a simple functional interface: start returns a handle, call shutdown to stop.

    interface TransportHandle {
        info(): TransportInfo;
        shutdown(): Promise<void>;
    }
    Index

    Methods

    Methods