Tools
Every registered tool with its schema.
GET
/api/v1/toolsLists every registered tool with name, description, and JSON schema of its parameters. No parameters.
Response
json
{
"count": 24,
"tools": [
{
"name": "web_search",
"description": "Searches the web and returns title, URL, and snippet …",
"parameters": {
"type": "object",
"properties": {
"query": { "type": "string", "description": "Search term" }
},
"required": ["query"]
}
},
{
"name": "analyze_image",
"description": "Looks at one or more images and answers a question about them.",
"parameters": {
"type": "object",
"properties": {
"images": { "type": "array", "items": { "type": "string" } },
"question": { "type": "string" }
},
"required": ["images"]
}
}
]
}200List retrieved successfully.