@modelcontextprotocol/sdk
    Preparing search index...

    Interface CallToolRequest

    Used by the client to invoke a tool provided by the server.

    interface CallToolRequest {
        id: RequestId;
        jsonrpc: "2.0";
        method: "tools/call";
        params: { arguments?: { [key: string]: unknown }; name: string };
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    jsonrpc: "2.0"
    method: "tools/call"
    params: { arguments?: { [key: string]: unknown }; name: string }