AI agents · OpenClaw · self-hosting · automation

Quick Answer

What Is Google Home MCP? AI Agents Run Your Smart Home

Published:

The short answer

Google Home MCP is an official Model Context Protocol server from Google that turns your Google Home into a set of tools any MCP-capable AI agent can call. Google opened early access on September 16, 2026 to Google Home Premium Advanced subscribers in the US ($20/month or $200/year). Once connected, Claude, ChatGPT, OpenClaw, Hermes or Google’s own Antigravity can enumerate your rooms and devices, check live state, search event history and camera summaries, and issue control commands — everything except sensitive actions like unlocking doors.

It does not replace Gemini for Home, which remains Google’s built-in assistant in the Home app and on Nest speakers. Home MCP is a second door: it hands the underlying data and control layer of your home to whichever agent you already use.

What the server exposes

Google’s MCP overview groups Home MCP’s functions into four capability areas, each with example prompts:

CapabilityWhat it doesExample prompt
Entity enumerationLists structures, rooms and devices”How many lights are in the house?”
Real-time state monitoringQueries live device state, including connectivity”Is the home secured right now?”
Device controlExecutes parameterised actions”Set the thermostat to 20 °C and turn off the kitchen lights”
Historical analysisQueries past states and chronological event logs”What happened while I was out?”

Early testers’ examples, per Google’s announcement: asking what the kids did after school and getting a cross-camera summary with the relevant clips; using device-state history to count loads of laundry in a week or how long lights were left on; having an agent send an audio message over a Google Home speaker when an asynchronous task finishes; and generating a custom smart-home dashboard in plain language.

Supported hardware is the whole ecosystem: Google Nest doorbells, cameras and thermostats, plus any Works with Google Home or Matter device such as light bulbs.

Which agents work with it

Google’s blog post names Google Antigravity, Claude, Hermes and OpenClaw as example clients, and its user guide provides step-by-step setup for Antigravity, Claude Cowork and OpenClaw. TechCrunch lists ChatGPT as well. In practice anything that can register a remote MCP server with OAuth — the same mechanism used for Google Workspace and Google Cloud MCP servers — should connect.

Setup, as of September 2026

Home MCP is not a one-tap toggle in the Home app. The user guide requires:

  1. An active Google Home with connected devices and a Google Home Premium Advanced subscription.
  2. A Google Cloud project with the Home API enabled.
  3. An OAuth consent screen configured for an external audience, a web-application OAuth client ID with redirect URIs for your agent, and the app published.
  4. Registering the server URL https://home.googleapis.com/mcp with scope home.platform.v2 in your agent, then signing in and granting permissions when the agent prompts you.

Familiar-face data has an extra gate: a manager of the structure must explicitly grant access, and the home needs at least one compatible Nest camera or doorbell with familiar face detection enabled. Google advises people who share a home to talk to the other occupants before wiring an agent in.

Safety and privacy guardrails

Google describes Home MCP as “safe and secure by design” and lists concrete limits:

  • Rate limits on tool calls.
  • No sensitive actions — the server will not let an agent unlock doors.
  • Existing permissions hold: an agent acts as the signed-in user, with that user’s access.
  • Separate consent for familiar-face recognition data.

The warning that matters is Google’s own: “depending on your agent, connecting it to Home MCP can result in unexpected or even undesired behavior.” An agent with a broad system prompt and a long tool list can misinterpret a request; keep the first weeks in read-mostly mode and review the Google Home developer policies and terms before granting control scopes.

Home Developer MCP: the companion for coders

On the same day Google introduced Home Developer MCP, a second server aimed at developers rather than households. It grounds AI coding tools in verified documentation — the full Home API reference and integration guides, the Matter specification, and OpenThread/Thread docs — and works with Google’s Antigravity CLI, Antigravity 2.0 and IDE, as well as Claude Code, Cursor and GitHub Copilot in VS Code. It authenticates with project API keys or unauthenticated trial paths, not user OAuth, because it never touches a real home.

Google’s framing: Home MCP lets personal agents interact with the smart home safely; Home Developer MCP delivers technical information directly to the tools that build integrations.

Why this matters

MCP was created by Anthropic in November 2024 and is now stewarded under the Linux Foundation’s Agentic AI Foundation; Google already exposes MCP servers for Google Cloud, its data platforms and Google Workspace. Home MCP extends that pattern to physical devices, which is the first time a major smart-home platform has offered agent access through an open protocol rather than a proprietary assistant SDK. Home Assistant, the open-source platform, has shipped an MCP server integration since early 2025; Google’s move brings the same idea to the tens of millions of Nest and Matter households — at least those paying for the top subscription tier.

Sources