Concierge MCP Server
Exposes a curated allowlist of Home Assistant entities to external clients over MCP with read-only list and get_state tools, using an isolated guest credential that cannot access other Home Assistant APIs.
README
Concierge MCP Server
A Home Assistant custom integration that exposes a small, operator-curated allowlist of entities over the Model Context Protocol to a low-trust, external client — for example a guest-facing chatbot for a short-term rental — using a credential that cannot reach anything else in Home Assistant, even if it leaks.
It registers a second MCP endpoint at /api/concierge_mcp, alongside (not
instead of) Home Assistant's own mcp_server
integration, which keeps working unaffected for your own, broader use.
Why not just use the built-in mcp_server integration?
Two platform limitations, confirmed by reading home-assistant/core
directly:
- It can't be scoped per client.
mcp_server's manifest declares"single_config_entry": true— Home Assistant only allows one instance. A second, narrower instance can't be added through the UI. - Home Assistant access tokens aren't endpoint-scoped. A Long-Lived
Access Token or OAuth token is proof of "authenticated as user X" —
whatever user X can do, that token can do, on any HTTP endpoint
(
/api/mcp,/api/states,/api/services/*, ...). There's no way to mint a token that's restricted to "MCP only," let alone to a subset of entities.
Combined, there's no way to expose two differently-scoped, non-admin MCP
surfaces with the stock integration. This project exists to provide the
second, narrow one — with its own secret, its own entity allowlist, and no
code path that ever touches hass.auth.
If Home Assistant core ever adds native support for either of these gaps, this integration becomes unnecessary — that would be a good problem to have.
What it does (v1)
- One HTTP endpoint,
/api/concierge_mcp, implementing the MCP Streamable HTTP transport (stateless JSON-RPC over POST). - Authenticated by a guest secret this integration generates and owns —
never a Home Assistant access token, never checked against
hass.auth. - Two read-only tools:
list_entities()— discovery: the allowlisted entities and their friendly names.get_state(entity_id)— state and attributes for one allowlisted entity.
- Any call referencing an entity outside the allowlist is rejected with an explicit MCP-level error, never a silent no-op and never a crash.
- The allowlist is managed entirely through the integration's Options flow (an entity picker) — no YAML editing.
Write/control actions are intentionally out of scope for v1 (see the design document in this repo for what's planned for v2).
Installation (HACS)
- HACS → Integrations → ⋮ → Custom repositories → add this repository URL, category "Integration".
- Install "Concierge MCP Server", restart Home Assistant.
- Settings → Devices & Services → Add Integration → "Concierge MCP Server".
- Copy the guest secret shown during setup — it is shown once.
- Open the integration's options and pick the entities to expose.
Security model
- Compromise of the guest secret grants nothing beyond the allowlist.
It is not a Home Assistant credential and cannot reach
/api/states,/api/services/*,/api/mcp, or anything else. - Comparison uses
hmac.compare_digest, not==, to avoid a timing side-channel. - The secret is never logged and is redacted from diagnostics exports.
- This endpoint must sit behind a TLS-terminating, access-controlled proxy or tunnel (the reference deployment uses a Cloudflare Zero Trust tunnel). It is not designed to be exposed directly to the raw internet: there is no in-integration rate limiting or brute-force protection in v1.
Development
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements_test.txt
pytest tests/ --cov=custom_components.concierge_mcp
Tests run fully offline against pytest-homeassistant-custom-component
— no live Home Assistant instance or network access required.
Project docs
docs/DESIGN.md— the full requirements and design document this integration was built from.docs/STATUS.md— what's implemented vs. outstanding against that design, and pointers to the open issues tracking the rest.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.