@modelcontextprotocol/sdk
    Preparing search index...

    Interface ListResourcesResult

    The server's response to a resources/list request from the client.

    interface ListResourcesResult {
        _meta?: { [key: string]: unknown };
        nextCursor?: string;
        resources: Resource[];
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index

    Properties

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

    See General fields: _meta for notes on _meta usage.

    nextCursor?: string

    An opaque token representing the pagination position after the last returned result. If present, there may be more results available.

    resources: Resource[]