homeassistant_get_state
Retrieve the current state of a Home Assistant entity by specifying its entity ID, enabling AI assistants to monitor smart home device statuses.
Instructions
Get the state of a Home Assistant entity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entity_id | Yes | The entity ID of the Home Assistant entity |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"entity_id": {
"description": "The entity ID of the Home Assistant entity",
"type": "string"
}
},
"required": [
"entity_id"
],
"type": "object"
}