Skip to main content

tools/list

List available tools.
This endpoint requires authentication. Ensure you have initialized the MCP connection before calling this method.

Request

{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/list",
  "params": {}
}

Response

{
  "jsonrpc": "2.0",
  "id": 2,
  "result": {
    "tools": [
      {
        "name": "search_offerings",
        "description": "Search the available offerings, services, and products",
        "inputSchema": {
          "type": "object",
          "properties": {
            "question": {
              "type": "string",
              "description": "The search query or question about offerings to explore"
            }
          },
          "required": ["question"]
        }
      }
    ]
  }
}