ssh-mcp-pro API - v1.1.2
    Preparing search index...

    Interface ConnectionParams

    SSH connection parameters

    interface ConnectionParams {
        auth?: "key" | "auto" | "password" | "agent";
        expectedHostKeySha256?: string;
        host: string;
        hostKeyPolicy?: HostKeyPolicy;
        knownHostsPath?: string;
        passphrase?: string;
        password?: string;
        policyHost?: string;
        policyMode?: PolicyMode;
        port?: number;
        privateKey?: string;
        privateKeyPath?: string;
        readyTimeoutMs?: number;
        strictHostKeyChecking?: boolean;
        ttlMs?: number;
        useAgent?: boolean;
        username: string;
    }
    Index

    Properties

    auth?: "key" | "auto" | "password" | "agent"
    expectedHostKeySha256?: string
    host: string
    hostKeyPolicy?: HostKeyPolicy
    knownHostsPath?: string
    passphrase?: string
    password?: string
    policyHost?: string
    policyMode?: PolicyMode
    port?: number
    privateKey?: string
    privateKeyPath?: string
    readyTimeoutMs?: number
    strictHostKeyChecking?: boolean
    ttlMs?: number
    useAgent?: boolean
    username: string