@modelcontextprotocol/sdk
    Preparing search index...

    Interface ListToolsRequest

    Sent from the client to request a list of tools the server has.

    interface ListToolsRequest {
        id: RequestId;
        jsonrpc: "2.0";
        method: "tools/list";
        params?: { cursor?: string };
    }

    Hierarchy (View Summary)

    Index

    Properties

    jsonrpc: "2.0"
    method: "tools/list"
    params?: { cursor?: string }

    Type Declaration

    • Optionalcursor?: string

      An opaque token representing the current pagination position. If provided, the server should return results starting after this cursor.