search_entities
Find Home Assistant devices and entities using natural language queries to identify specific controls like lights, switches, or sensors for automation tasks.
Instructions
Search for Home Assistant entities matching a natural language description.
Args:
    description: Natural language description of the entity (e.g., "office light", "kitchen fan")
Returns:
    A list of matching entity IDs with their friendly names, or an error message
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| description | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "description": {
      "title": "Description",
      "type": "string"
    }
  },
  "required": [
    "description"
  ],
  "type": "object"
}