AI/TLDR

Google Home MCP

Google's official MCP servers for the smart home and its specifications

Workflow AutomationCommercial
Updated
16 Sep 2026
Coverage
1 story

What's new

16 Sep 2026

Google opened Early Access to Home MCP, letting any MCP-capable agent list devices, read live state, run actions and query event history in a Google Home. Rolling out in English to Google Home Premium Advanced subscribers in the US, alongside a Home Developer MCP server for Home, Matter and Thread documentation.

Latest news

Overview

Google Home MCP is Google's official way to put an AI agent in front of a real smart home. It is a hosted Model Context Protocol endpoint at https://home.googleapis.com/mcp, so any client that can call MCP tools — Google names Antigravity, Claude and OpenClaw — connects to it without a Google-specific SDK. Once connected, the agent reaches the devices and event history in the user's Google Home ecosystem, from Nest doorbells and thermostats to Works with Google Home and Matter accessories.

The server exposes five tools that together cover a full read-decide-act loop. `list_homes` returns the homes and structures the caller can reach. `list_home_resources` enumerates devices, areas, traits, attributes and the command schemas each device accepts. `list_home_states` reports live connectivity and trait conditions. `run_home_actions` executes parameterized commands against named devices. `list_home_history` queries past state changes and event logs over a time range — the piece that lets an agent answer questions about what happened rather than only what is true now.

Google ships a second, separate server alongside it. Home Developer MCP, at https://homedevelopers.googleapis.com/mcp, touches nobody's house: it searches Google Home documentation and the Matter 1.5.1 and Thread 1.4.1 specifications so coding tools can ground answers about the protocols. It offers an unauthenticated trial path on a shared public quota, which makes it the easy one to try — no API key and no Google Cloud project — with an API-key path recommended for sustained use.

Access is deliberately narrow at launch. Home MCP entered Early Access on 16 September 2026, in English, for Google Home Premium Advanced subscribers in the United States. Guardrails sit on Google's side of the connection: rate limits apply, sensitive actions such as unlocking doors are prohibited outright, familiar-face data requires the structure manager's consent, and a user can revoke an agent's access at any time from the Google Home app or the My Accounts page.

What it does

  • Hosted MCP endpoint at https://home.googleapis.com/mcp — any MCP-capable client connects, no Google-specific SDK
  • Five tools covering the full loop: list_homes, list_home_resources, list_home_states, run_home_actions and list_home_history
  • Event-history queries, so an agent can summarise what happened in a home over a time range, not just read current state
  • Reaches the whole Google Home ecosystem: Nest devices plus Works with Google Home and Matter accessories
  • Home Developer MCP, a second server that searches Home docs and the Matter 1.5.1 and Thread 1.4.1 specifications
  • Safety limits enforced server-side: rate limits, prohibited sensitive actions such as unlocking doors, consent-gated familiar-face data
  • Per-agent access is revocable at any time from the Google Home app or the My Accounts page

Getting started

Home Developer MCP is the one to try first — it needs no credentials. Home MCP itself requires a Google Home Premium Advanced subscription and OAuth credentials you create in a Google Cloud project.

Try Home Developer MCP with no credentials

The documentation server has an unauthenticated trial path on a shared public quota. Point any MCP client at the endpoint to search Google Home, Matter and Thread documentation.

jsonjson
{
  "mcpServers": {
    "home-developer": {
      "url": "https://homedevelopers.googleapis.com/mcp"
    }
  }
}

Set up a Google Cloud project for Home MCP

In the Google Cloud console, create a project and enable the Home API under APIs & Services. A Google Home Premium Advanced subscription on the account is a prerequisite.

Create OAuth credentials

Configure the OAuth consent screen with an External audience, create an OAuth client ID with the redirect URIs your agent expects, then publish the app on the Google Auth Platform.

Point your agent at the Home MCP endpoint

Give the client ID and client secret to your MCP client along with the server URL, then sign in and grant permissions. The agent can then call the five Home tools.

texttext
https://home.googleapis.com/mcp

Commands and code are distilled from the project's own documentation — always check the official docs for the latest.

When to use it

  • Reach for it when you want the assistant you already use to run the house, instead of being limited to Google's own
  • Reach for it to ask questions that span time and rooms — what happened while you were out, how long a light stayed on
  • Reach for it to build a smart home dashboard in plain language rather than wiring up the Home APIs by hand
  • Reach for Home Developer MCP when a coding agent needs grounded answers about Matter, Thread or the Home APIs

How Google Home MCP compares

Google Home MCP alongside other open-source workflow automation tools AI/TLDR tracks, ranked by GitHub stars.

ToolStarsWhat it does
n8n★ 205kA self-hostable workflow automation tool with a visual node editor that connects 400+ apps and APIs and adds native AI steps, letting technical teams build automations without writing most of the glue code.
Huginn★ 50kA self-hosted system of "agents" that watch websites, feeds, and events and take automated actions on your behalf, similar to a private IFTTT.
GitHub MCP Server★ 33kGitHub's official MCP server, hosted or self-run, that gives an agent scoped toolsets for repositories, issues, pull requests, Actions runs and code-security alerts.
gws (Google Workspace CLI)★ 31kA command-line tool for every Google Workspace API, built at runtime from Google’s Discovery Service, returning structured JSON and shipping 40+ agent skills. Not an officially supported Google product.
Kestra★ 28.1kAn event-driven orchestration platform that defines data, AI, and infrastructure pipelines as declarative YAML and runs them through a web UI.
Activepieces★ 24.5kAn open-source Zapier alternative where you build automations from reusable TypeScript "pieces", with support for AI agents and self-hosting.
n8n-MCP★ 22.9kAn MCP server that gives coding assistants structured access to n8n's node catalogue, schemas, docs and workflow templates so they can build and validate n8n workflows.
Google Home MCPGoogle's official MCP servers for the smart home and its specifications