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

    TLS configuration for HTTPS transport.

    Certificate files are read from the filesystem at server startup. Required when transport mode is 'https'.

    interface TlsConfig {
        caPath?: string;
        certPath: string;
        keyPath: string;
    }
    Index

    Properties

    caPath?: string

    Optional path to the CA certificate file (PEM format)

    certPath: string

    Path to the TLS certificate file (PEM format)

    keyPath: string

    Path to the TLS private key file (PEM format)