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.
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"]
}
}
]
}
}