NestJS MCP - v1.0.1
    Preparing search index...

    Redis transport options

    interface MCPRedisOptions {
        debug?: boolean;
        errorHandler?: (error: Error, clientId?: string) => void;
        maxConnections?: number;
        connectionTimeout?: number;
        host?: string;
        port?: number;
        password?: string;
        db?: number;
        channelPrefix?: string;
        requestChannel?: string;
        responseChannel?: string;
        redisOptions?: { [key: string]: unknown };
    }

    Hierarchy (View Summary)

    Index

    Properties

    debug?: boolean

    Enable debug logging for the transport

    errorHandler?: (error: Error, clientId?: string) => void

    Custom error handler

    maxConnections?: number

    Maximum number of concurrent connections (if applicable)

    connectionTimeout?: number

    Connection timeout in milliseconds

    host?: string

    Redis connection host

    port?: number

    Redis connection port

    password?: string

    Redis password

    db?: number

    Redis database number

    channelPrefix?: string

    Channel prefix for pub/sub

    requestChannel?: string

    Request channel name

    responseChannel?: string

    Response channel name pattern

    redisOptions?: { [key: string]: unknown }

    Redis connection options (for ioredis)