@modelcontextprotocol/sdk
    Preparing search index...

    Interface LoggingMessageNotificationParams

    Parameters for a notifications/message notification.

    interface LoggingMessageNotificationParams {
        _meta?: { [key: string]: unknown };
        data: unknown;
        level: LoggingLevel;
        logger?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

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

    See General fields: _meta for notes on _meta usage.

    data: unknown

    The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here.

    The severity of this log message.

    logger?: string

    An optional name of the logger issuing this message.