MCP Server Framework - v1.1.2
    Preparing search index...

    Interface RegisterDynamicResourceOptions

    Arguments for DynamicResourceRegistry.register().

    interface RegisterDynamicResourceOptions {
        category: string;
        content: string | Uint8Array<ArrayBufferLike>;
        mimeType: string;
        sessionId: string;
        ttlMs?: number;
    }
    Index

    Properties

    category: string

    URI category segment (a-z, 0-9, _, -)

    content: string | Uint8Array<ArrayBufferLike>

    Payload to store

    mimeType: string

    MIME type of the content

    sessionId: string

    Owning session ID — strict-binding key

    ttlMs?: number

    TTL override in ms (defaults to defaultTtlMs)