FoundryVTT MCP Server Documentation - v1.5.3
    Preparing search index...

    Interface WorldMessage

    Raw chat message from worldData.

    interface WorldMessage {
        _id: string;
        type: number;
        user: string;
        timestamp: number;
        flavor?: string;
        content: string;
        speaker?: {
            scene?: string;
            actor?: string;
            token?: string;
            alias?: string;
        };
        rolls?: string[];
        sound?: string;
        whisper?: string[];
        blind?: boolean;
        flags?: Record<string, unknown>;
    }
    Index

    Properties

    _id: string
    type: number
    user: string
    timestamp: number
    flavor?: string
    content: string
    speaker?: { scene?: string; actor?: string; token?: string; alias?: string }
    rolls?: string[]
    sound?: string
    whisper?: string[]
    blind?: boolean
    flags?: Record<string, unknown>