Tool: list_home_states
Retrieves the current states of home resources including devices.
The following code sample shows how to use curl to call the list_home_states MCP tool.
| Curl Request |
|---|
curl --location 'https://home.googleapis.com/mcp' \ --header 'Authorization: Bearer {oauth-access-token}' \ --header 'content-type: application/json' \ --header 'accept: application/json, text/event-stream' \ --data '{ "method": "tools/call", "params": { "name": "list_home_states", "arguments": { // Provide these details according to the MCP tool specification. } }, "jsonrpc": "2.0", "id": 1 }' |
Input Schema
Request for RetrieveHomeStates.
RetrieveHomeStatesRequest
| JSON representation |
|---|
{ "structureId": string, "filter": { object ( |
| Fields | |
|---|---|
structureId |
Optional. The unique identifier for the structure. If omitted, states for all structures and structureless devices for the user will be retrieved. |
filter |
Optional. An optional field mask for the device state. The |
freshness |
Optional. The freshness level of the state to retrieve. |
Filter
| JSON representation |
|---|
{ "resourceIds": [ string ], "shortenedResourceTypes": [ string ], "shortenedResourceTraits": [ string ], "shortenedResourceEvents": [ string ], "fieldPaths": [ string ] } |
| Fields | |
|---|---|
resourceIds[] |
Optional. The resource id for filtering. (e.g. device@device_id, automation@automation_id) |
shortenedResourceTypes[] |
Optional. The resource types to filter resources by. Example: "GoogleLightDevice", "GoogleDisplayDevice", "SpeakerDevice", "VideoRemoteControlDevice" (and not "action.devices.types.LIGHT"). Not case sensitive. |
shortenedResourceTraits[] |
Optional. The resource traits to filter resources by. Component prefixes should not be included and should be specified in the shortened_resource_types field instead. Example: "OnOff", "Volume" (and not either "home.uddm.traits.matter.OnOffTrait" or "GoogleTvDevice/OnOff"). Not case sensitive. |
shortenedResourceEvents[] |
Optional. The resource events to filter history events by. Must be in "TraitName.EventName" format (e.g. |
fieldPaths[] |
Optional. Paths to filter by. These are case sensitive. Traits and events should be properly PascalCased and fields should be camelCased. Format: - For traits: "[Trait].[fieldPath]" - For events: "[Trait].[Event].[fieldPath]" Examples: - "OnOff.onOff" (or "OnOff.state.onOff") - "CameraHistory.HistoryItem.eventTracks.zones" For the path filter to take effect, the trait or event type must also be specified in shortened_resource_traits or shortened_resource_events respectively. |
Freshness
Freshness levels for state retrieval to balance latency and accuracy.
| Enums | |
|---|---|
FRESHNESS_UNSPECIFIED |
will be treated as DEFAULT. |
DEFAULT |
Uses report-state-quality heuristics to decide whether to call through to the partner or use home graph data. Recommended for standard reactive prompts. |
STALE_READ |
Reads from the cache (e.g., readobjects or Spanner) which may be stale. Useful for configuration data or general exploration where low latency is prioritized. |
MOST_FRESH |
Bypasses caches and forces a direct query to the partner cloud. Mandatory for high-sensitivity or high-stakes actions like door locks. |
Output Schema
Response for RetrieveHomeStates.
RetrieveHomeStatesResponse
| JSON representation |
|---|
{
"states": [
{
object ( |
| Fields | |
|---|---|
states[] |
The list of home states. |
ResourceState
| JSON representation |
|---|
{ "id": string, "type": string, "displayName": string, "traits": { string: { object ( |
| Fields | |
|---|---|
id |
Identifier. The unique identifier for the resource (e.g. device@device_id, scene@scene_id, automation@automation_id, room@room_id, etc.). |
type |
Output only. The type of the resource. |
displayName |
Output only. The display name of the resource. |
traits |
Output only. The state of each trait on the resource, keyed by the trait name (e.g. OnOff, Volume). An object containing a list of |
resourceConnectivityState |
Output only. The connectivity status of a home resource. |
timestamp |
Output only. The timestamp at which the resource state was recorded. For state retrieval, it is the timestamp at which the state was observed. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
TraitsEntry
| JSON representation |
|---|
{
"key": string,
"value": {
object ( |
| Fields | |
|---|---|
key |
|
value |
|
TraitState
| JSON representation |
|---|
{
"type": string,
"connectivityState": enum ( |
| Fields | |
|---|---|
type |
Output only. The type that this trait applies to. |
connectivityState |
Output only. The connectivity status of the trait. |
stateReportingOmitted |
Output only. Whether the state reporting is omitted for this trait. |
state |
Output only. The state of the trait. |
timestamp |
Output only. The timestamp at which the event happened. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
Struct
| JSON representation |
|---|
{ "fields": { string: value, ... } } |
| Fields | |
|---|---|
fields |
Unordered map of dynamically typed values. An object containing a list of |
FieldsEntry
| JSON representation |
|---|
{ "key": string, "value": value } |
| Fields | |
|---|---|
key |
|
value |
|
Value
| JSON representation |
|---|
{ // Union field |
| Fields | |
|---|---|
Union field kind. The kind of value. kind can be only one of the following: |
|
nullValue |
Represents a JSON |
numberValue |
Represents a JSON number. Must not be |
stringValue |
Represents a JSON string. |
boolValue |
Represents a JSON boolean ( |
structValue |
Represents a JSON object. |
listValue |
Represents a JSON array. |
ListValue
| JSON representation |
|---|
{ "values": [ value ] } |
| Fields | |
|---|---|
values[] |
Repeated field of dynamically typed values. |
Timestamp
| JSON representation |
|---|
{ "seconds": string, "nanos": integer } |
| Fields | |
|---|---|
seconds |
Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be between -62135596800 and 253402300799 inclusive (which corresponds to 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z). |
nanos |
Non-negative fractions of a second at nanosecond resolution. This field is the nanosecond portion of the duration, not an alternative to seconds. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be between 0 and 999,999,999 inclusive. |
ConnectivityState
The connectivity status of a home resource or trait.
| Enums | |
|---|---|
CONNECTIVITY_STATE_UNSPECIFIED |
The default value. This value is used if the connectivity status is omitted. |
UNKNOWN |
The connectivity status is unknown. |
ONLINE |
The connectivity status is online. |
OFFLINE |
The connectivity status is offline. |
PARTIAL_ONLINE |
The resource is partially online, meaning some of its underlying functionalities are online. |
NullValue
Represents a JSON null.
NullValue is a sentinel, using an enum with only one value to represent the null value for the Value type union.
A field of type NullValue with any value other than 0 is considered invalid. Most ProtoJSON serializers will emit a Value with a null_value set as a JSON null regardless of the integer value, and so will round trip to a 0 value.
| Enums | |
|---|---|
NULL_VALUE |
Null value. |
Tool Annotations
Tool annotations are sent to MCP clients to describe the basic risk of a given tool. Most clients treat these hints as untrusted, but they can be used to decide when a confirmation prompt might be sent to a user.
Along with the title string, the following boolean hints are defined as follows:
readOnlyHint: If true, the tool doesn't modify its environment. Default: false.destructiveHint: If true, then the tool can perform destructive actions. If false, then the tool can only perform additive actions. Default: true.idempotentHint: If true, then calling the tool repeatedly with the same arguments will have no additional effect on its environment. Default: false.openWorldHint: If true, then the tool can interact with an 'open world' of external entities. If false, then the tool can only interact with internal entities. For example, a web search tool would be open world, while a memory tool would not be open world.
Destructive Hint: ❌ | Idempotent Hint: ✅ | Read Only Hint: ✅ | Open World Hint: ✅