Tool function name. Must be unique.
1 - 64"get_order_status"
What this tool does. This is shown to the LLM to help it decide when to call the tool.
1 - 500"Fetch an order status using an orderId."
JSON Schema object describing the tool function parameters.
{
"type": "object",
"properties": { "orderId": { "type": "string" } },
"required": ["orderId"]
}Invocation settings for the tool endpoint.
{
"url": "https://api.client.com/tools/get-order-status",
"method": "POST",
"timeoutMs": 10000
}Authentication used when calling the endpoint. Secrets should be stored securely server-side.
{ "type": "bearer", "token": "REDACTED" }Whether this tool is enabled and can be used by the agent.
true
Tool definition updated successfully