Interface McpNotificationExperimental

One server-initiated JSON-RPC notification (a message with a method and no id).

interface McpNotification {
    method: string;
    params?: Record<string, unknown>;
}

Properties

Properties

method: string
params?: Record<string, unknown>