mcp-use TypeScript API
    Preparing search index...

    Interface McpNotification

    Notification received from one managed MCP server.

    interface McpNotification {
        id: string;
        method: string;
        params?: Record<string, unknown>;
        read: boolean;
        timestamp: number;
    }
    Index
    id: string

    Unique notification identifier generated by the provider.

    method: string

    MCP notification method name.

    params?: Record<string, unknown>

    Optional notification parameters.

    read: boolean

    Whether the consumer has marked the notification as read.

    timestamp: number

    Unix timestamp in milliseconds when the notification was received.