IoT fleet management platform.
## Balena MCP Server: Container-Based IoT Platform The **Balena MCP Server** integrates Balena IoT platform into Google Antigravity, enabling AI-assisted fleet management, container deployment, and IoT device operations at scale. ### Why Balena MCP? - **Container Deployments**: Deploy Docker containers to IoT devices - **Fleet Management**: Manage thousands of devices from single dashboard - **OTA Updates**: Push updates to device fleets seamlessly - **Remote Access**: SSH and web terminal access to devices - **Multi-Container**: Run multiple services on single devices ### Key Features #### 1. Fleet Management ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "List all devices in the fleet with status and software version" }] ) ``` #### 2. Deployments ```python # Deploy updates response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Deploy new container release to production fleet" }] ) ``` #### 3. Device Access ```python # Access devices response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Open SSH tunnel to device for debugging" }] ) ``` #### 4. Environment Variables ```python # Configure env response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Set environment variables for fleet configuration" }] ) ``` ### Configuration ```json { "mcpServers": { "balena": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-balena"], "env": { "BALENA_API_KEY": "your-api-key" } } } } ``` ### Use Cases **IoT Fleets**: Manage container-based IoT device fleets. **Edge Deployment**: Deploy applications to edge devices. **Remote Management**: Administer devices remotely. **Continuous Deployment**: Automate IoT software updates. The Balena MCP Server brings container-based IoT management into your workflow.
{
"mcpServers": {
"balena": {}
}
}