Creates a callable tool for agents.
Your SuperU API key.
Request body for Create tool.
Tool Create Request schema.
Tool name
"check-user-status"
What the tool does
"Check if a user exists in the database"
JSON schema-like parameter definition
{
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "User email"
}
},
"required": ["email"]
}Endpoint path for tool execution
"/api/check-user"
Base domain for tool execution
"https://your-api.com"
Optional tool type
"http"
Whether the tool runs asynchronously
false