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

    Interface TransportInfo

    Runtime information about the active transport.

    interface TransportInfo {
        host?: string;
        mode?: string;
        port?: number;
        startedAt?: Date;
        state: TransportState;
        url?: string;
    }
    Index

    Properties

    host?: string

    Host address (HTTP/HTTPS only)

    mode?: string

    Transport mode identifier (e.g., 'stdio', 'http', 'https')

    port?: number

    Port number (HTTP/HTTPS only)

    startedAt?: Date

    When the transport was started

    Current transport state

    url?: string

    Full URL (HTTP/HTTPS only)