A web-based integration manager for Unfolded Circle Remote Two/3. This integration provides a convenient web interface to manage your custom integrations, automatically check for updates, install new integrations, and backup integration config files. And it runs directly on your remote.
Access comprehensive release information directly from the web interface.
- Release Notes Viewer: Click on any version number to view detailed release notes from GitHub
- Beta Release Support: Enable beta releases in settings to see and install pre-release versions
- Version Selection: Choose specific versions to install instead of only the latest
- Rollback Capability: Install previous versions if needed
The Integration Manager can automatically detect when newer versions of your custom integrations are available on GitHub and update them while preserving your existing configuration.
- Automatic Update Detection: Periodically checks GitHub releases for new versions
- One-Click Updates: Update integrations directly from the web interface
- Configuration Backup & Restore: Automatically backs up integration settings before updating and restores them after installation (for integrations that support the backup feature)
- Version Tracking: View current and available versions for all installed integrations
- Beta Update Options: Receive update notifications for beta releases when enabled in settings
Important
Configuration preservation depends on the integration implementing the backup/restore API. Check the integration's documentation to confirm support. If not supported, an upgrade button will not be shown.
Full lifecycle management for your custom integrations.
- Delete Integrations: Remove installed integrations directly from the web interface
- One-Click Installation: Install new integrations from the community registry
- Update Control: Update to latest, select specific versions, or choose beta releases
- Safe Uninstall: Clean removal of integration drivers and configurations
Browse and install integrations from the community registry with a single click.
- Searchable Registry: View all available integrations from the Unfolded Circle community
- Category Filtering: Filter integrations by category (media, lighting, climate, etc.)
- Detailed Information: See integration descriptions, developers, versions, and GitHub links
- One-Click Installation: Install new integrations directly from the web interface
Protect your integration configurations with automatic scheduled backups.
- Scheduled Backups: Configure automatic daily backups at a specified time
- Manual Backups: Trigger immediate backups of all integrations or individual ones
- Backup Viewing: View and manage all saved configuration snapshots
- Export & Import: Download complete backup files for safekeeping or transfer to another Remote
- Per-Integration Backups: Each integration's configuration is backed up separately with timestamps
Backups are stored locally on the Remote and can be exported as JSON files for external storage.
Customize the Integration Manager's behavior through the Settings page:
- Shutdown on Battery: Automatically stop the web server when the Remote is on battery power to conserve energy (default: enabled)
- Automatic Updates: Enable automatic installation of integration updates when detected (default: disabled - manual confirmation required)
- Show Beta Releases: Display and allow installation of pre-release versions from GitHub (default: disabled)
- Automatic Backups: Enable scheduled daily backups of integration configurations (default: disabled)
- Backup Time: Set the time of day for automatic backups (24-hour format, e.g., "02:00")
View real-time logs directly in the web interface.
- Live Log Streaming: See integration manager logs in real-time
- Log Filtering: Filter by log level (INFO, WARNING, ERROR)
- Clear Logs: Clear the current log buffer with one click
- Diagnostic Information: Helpful for troubleshooting issues
The web server automatically starts when your Remote is docked and shuts down when on battery (configurable).
- Automatic Start/Stop: Web server lifecycle tied to dock status
- Battery Conservation: No background processes draining battery during mobile use
- Status Indicators: Dashboard shows current dock status and server state
- Download the latest release archive (
.tar.gz) from the Releases page - Upload and install via the Web Configurator:
- Go to Settings → Integrations & Docks → Custom Integrations
- Click Upload and select the downloaded archive
- Configure the integration:
- The integration will automatically discover your Remote using mDNS
- Web Configurator PIN: Enter the PIN from Settings → Profile → Web Configurator
- If discovery fails, you'll be prompted to manually enter:
- IP Address: Your Remote's IP address (e.g.,
192.168.1.100) - Web Configurator PIN: The PIN from Settings → Profile → Web Configurator
- IP Address: Your Remote's IP address (e.g.,
- Note: The PIN is only required during initial setup. An API key will be created and used for subsequent authentication.
- Access the web interface at
http://<remote-ip>:8088when docked
You can run the Integration Manager as a Docker container on an external server to manage your Remote.
docker run -d \\
--name uc-intg-manager \\
-p 8088:8088 \\
-e UC_INTEGRATION_HTTP_PORT=8088
-v uc-intg-manager-data:/data \\
ghcr.io/jackjpowell/uc-intg-manager:latestversion: '3.8'
services:
uc-intg-manager:
image: ghcr.io/jackjpowell/uc-intg-manager:latest
container_name: uc-intg-manager
ports:
- "8088:8088"
environment:
- UC_INTEGRATION_HTTP_PORT=8088
volumes:
- uc-intg-manager-data:/data
restart: unless-stopped
volumes:
uc-intg-manager-data:| Variable | Description | Default | Required |
|---|---|---|---|
UC_INTG_MANAGER_HTTP_PORT |
HTTP port for Integration Manager Web Server | 8088 |
No |
UC_CONFIG_HOME |
Configuration directory path | /config |
No |
UC_INTEGRATION_INTERFACE |
Network interface to bind integration API | 0.0.0.0 |
No |
UC_INTEGRATION_HTTP_PORT |
HTTP port for integration API | 9090 |
No |
- Ensure your Remote is docked (if running on the Remote itself)
- Open a browser and navigate to
http://<remote-ip>:8088 - That's it!
- Your Integrations: View all installed integrations with status, version, and helpful links
- Available Integrations: Browse the community registry and install new integrations
- Settings: Configure automatic updates, manage backups, and other preferences
- Logs: View real-time integration manager logs for diagnostics
- Navigate to Your Integrations
- If an update is available, you'll see an "Update Available" badge
- Click the Update button to install the latest version, or use the dropdown to:
- Select a specific version to install
- View release notes for any version
- Choose an alternate update method (with or without entity re-registration)
- The manager will:
- Backup the current configuration
- Download the selected release from GitHub
- Uninstall the old version
- Install the new version
- Restore the configuration
- Navigate to Available Integrations
- Browse or search for the integration you want
- Click the Install button to install the latest version, or use the dropdown to select a specific version
- The integration will be downloaded from GitHub and installed
- Configure it through the Remote's normal integration setup
- Navigate to Your Integrations or Available Integrations
- Click the trash icon on any installed integration
- Confirm the deletion in the modal dialog
- The integration driver will be removed from your Remote
- Navigate to Settings
- In the Export & Import Data section:
- Export Backup File: Download a complete backup including all integration configs and settings
- Import Backup File: Upload a previously exported backup to restore everything
- In the Integration Configurations section:
- Capture Configs Now: Immediately backup all integration configurations
- View Saved Configs: See all stored backups with timestamps
- Enable Automatic Backups and set a time for daily scheduled backups
- Python 3.11 or later
- pip or uv package manager
Clone the repository:
git clone https://github.com/JackJPowell/uc-intg-manager.git
cd uc-intg-managerCreate and activate a virtual environment:
python3 -m venv .venv
source .venv/bin/activate # On Windows: .venv\\Scripts\\activateor using uv
uv venv
source .venv/bin/activate # On Windows: .venv\\Scripts\\activateInstall dependencies:
pip install -r requirements.txtor using uv
uv pip install -r requirements.txtRun the driver:
python -m intg-manager\driver.pyAccess the web interface at http://localhost:8088
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the Mozilla Public License 2.0 - see the LICENSE file for details.
- Unfolded Circle for the amazing Remote devices
- The Unfolded Circle community for inspiration and feedback
- ucapi - Python integration library for building custom integrations
- core-api - Official Remote Core API documentation
- ucapi-framework - Unofficial python ucapi framework

