uc-remote-mcp
Allows configuration of entities provided by Home Assistant integration on the Unfolded Circle Remote, enabling control of Home Assistant entities through the remote's interface.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@uc-remote-mcplist all activities on the remote"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Unfolded Circle Remote MCP
An independent Model Context Protocol server for reading and configuring an Unfolded Circle Remote Two or Remote 3 through the official Core REST API.
The server exposes activities, touchscreen pages, profiles, integration entities, physical-button mappings, and a generic Core API request tool to MCP clients such as GitHub Copilot CLI.
This server uses an admin API key and includes write, replacement, delete, and unrestricted request tools. A mistaken tool call can change or remove remote configuration. Back up important setups and test with thecore simulator first.
Requirements
Python 3.10 or newer
uvfor the examples belowAn Unfolded Circle Remote or core simulator reachable from the MCP host
An admin API key for authenticated endpoints
Related MCP server: WHOOP MCP Server
Run directly from GitHub
UC_REMOTE_URL=http://192.168.1.50 \
UC_API_KEY=replace-me \
uvx --from git+https://github.com/msvinth/uc-remote-mcp uc-remote-mcpFor a local checkout:
uv run uc-remote-mcpThe server uses stdio transport. Configure environment variables in the MCP
client rather than expecting the server to read a .env file automatically.
Create an API key
On the remote, generate a web-configurator PIN from the profile/settings view. Then run the helper from a clone:
./scripts/setup-api-key.sh 192.168.1.50The PIN is read from a hidden prompt instead of a command-line argument. The new key is printed once; store it securely.
MCP client configuration
Add this entry under mcpServers:
{
"mcpServers": {
"unfolded-circle": {
"type": "local",
"command": "uvx",
"args": [
"--python",
"3.12",
"--from",
"git+https://github.com/msvinth/uc-remote-mcp",
"uc-remote-mcp"
],
"env": {
"UC_REMOTE_URL": "http://192.168.1.50",
"UC_API_KEY": "replace-me"
},
"tools": ["*"]
}
}
}Keep the configuration file private because it contains the API key.
Home Assistant Copilot Terminal
The Copilot Terminal app in
/Users/msvinth/private/home-assistant-apps/copilot-terminal already includes
uvx, uses Python 3.12 for MCP servers, starts in /config, and persists
Copilot data at /data/home/.copilot/.
Its MCP config is:
/data/home/.copilot/mcp-config.jsonRetain the existing home-assistant entry and add unfolded-circle beside it:
{
"mcpServers": {
"home-assistant": {
"type": "local",
"command": "uvx",
"args": [
"--index-strategy",
"unsafe-best-match",
"--python",
"3.12",
"ha-mcp"
],
"env": {
"HOMEASSISTANT_URL": "http://supervisor/core",
"HOMEASSISTANT_TOKEN": "provided-by-the-app"
},
"tools": ["*"]
},
"unfolded-circle": {
"type": "local",
"command": "uvx",
"args": [
"--python",
"3.12",
"--from",
"git+https://github.com/msvinth/uc-remote-mcp",
"uc-remote-mcp"
],
"env": {
"UC_REMOTE_URL": "http://192.168.1.50",
"UC_API_KEY": "replace-me"
},
"tools": ["*"]
}
}
}The current Copilot Terminal setup-ha-mcp.sh regenerates this file at app
startup with only the Home Assistant entry. A manual merge can therefore be
overwritten on restart. Persistent automatic registration should be added
later as an optional feature in that sibling project; this repository does not
modify the app.
Configuration
Variable | Required | Description |
| Yes | Remote origin only, such as |
| For authenticated tools | Admin API key created by the remote. |
| No | Positive request timeout in seconds; defaults to |
Tools
Discovery and escape hatch: uc_ping, uc_ui_reference, uc_request,
get_screen_layout.
Entities: list_entities, get_entity.
Integrations: list_integration_instances, list_available_entities,
configure_entities.
Activities: list_activities, get_activity,
get_activity_ui_pages, get_activity_ui_page,
create_activity_ui_page, update_activity_ui_page,
delete_activity_ui_page, reorder_activity_ui_pages,
get_activity_buttons.
Profiles and groups: list_profiles, get_profile,
get_profile_pages, get_profile_page, update_profile_page,
get_profile_groups, list_activity_groups.
There are 25 tools in total. uc_request can call any Core REST API endpoint
available to the configured key.
Suggested workflow
Call
uc_ping.Inspect the target activity, profile, or page.
Call
uc_ui_referencebefore constructing UI payloads.Make the smallest possible update.
Read the object again to confirm the result.
An entity provided by Home Assistant or another integration must be configured
on the remote before it can be placed on a page. Use
list_integration_instances, list_available_entities, and
configure_entities in that order.
Compatibility
The package targets the current MCP Python SDK v2 and Python 3.10+. Its endpoint coverage was reviewed against Unfolded Circle REST Core API 0.46.x. The Core API is pre-1.0 and may change between firmware releases.
Home Assistant entity support depends on the remote's integration driver: integration-home-assistant.
Development
uv sync
uv run ruff check .
uv run ruff format --check .
uv run pytest
uv buildSee SECURITY.md before reporting credential or command-execution issues.
License and attribution
Original code and documentation in this repository are licensed under the MIT License.
Unfolded Circle API specifications and documentation have their own upstream licenses. This project links to those sources and does not relicense them. Unfolded Circle is a trademark of its respective owner. This community project is not affiliated with or endorsed by Unfolded Circle.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/msvinth/uc-remote-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server