llm_config.tools[] array.{
"name": "lookup_contact",
"description": "Look up contact information by name or phone number",
"url": "https://n8n.example.com/webhook/contacts",
"async": false,
"parameters": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Name or phone number to search"
}
},
"required": [
"query"
]
}
}