> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hibonsai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Tools List

> List available tools

## `tools/list`

List available tools.

<Callout color="#0A5B3B" icon="circle-alert">
  This endpoint requires authentication. Ensure you have initialized the MCP connection before calling this method.
</Callout>

## Request

<RequestExample>
  ```json theme={null}
  {
    "jsonrpc": "2.0",
    "id": 2,
    "method": "tools/list",
    "params": {}
  }
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "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"]
          }
        }
      ]
    }
  }
  ```
</ResponseExample>
