tool_servers field of the task response.
List Tools
Get available tools and their parameter schemas.200 OK
Execute a Tool
Invoke a tool action and get the result.200 OK
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
HTTP interface that all tool servers expose
tool_servers field of the task response.
GET /tools
200 OK
{
"tools": [
{
"name": "send_email",
"description": "Send an email to the specified recipient.",
"parameters": {
"type": "object",
"properties": {
"to": { "type": "string", "description": "Recipient email address" },
"subject": { "type": "string", "description": "Email subject line" },
"body": { "type": "string", "description": "Email body text" }
},
"required": ["to", "subject", "body"]
}
}
]
}
POST /step
{
"action": {
"tool_name": "send_email",
"parameters": {
"to": "candidate@example.com",
"subject": "Interview Scheduling",
"body": "Hello, we'd like to schedule..."
}
}
}
200 OK
{
"observation": "Email sent successfully to candidate@example.com"
}
{
"observation": "Error: invalid email address format",
"is_error": true
}
Was this page helpful?
