Open-source IoT platform.
## ThingsBoard MCP Server: IoT Platform The **ThingsBoard MCP Server** integrates ThingsBoard IoT platform into Google Antigravity, enabling AI-assisted device management, data visualization, and IoT analytics for enterprise deployments. ### Why ThingsBoard MCP? - **Multi-Tenancy**: Support for multiple tenants and customers - **Real-Time Dashboards**: Customizable widgets and dashboards - **Rule Engine**: Complex event processing and automation - **Device Connectivity**: Support for MQTT, HTTP, CoAP, and LwM2M - **Scalable**: Horizontal scaling for millions of devices ### Key Features #### 1. Device 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 ThingsBoard with their attributes and telemetry" }] ) ``` #### 2. Telemetry ```python # Query telemetry response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get temperature telemetry for device over the past 24 hours" }] ) ``` #### 3. Rule Chains ```python # Configure rules response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create rule chain to alert when sensor value exceeds threshold" }] ) ``` #### 4. Dashboards ```python # Build dashboards response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create dashboard with real-time charts for sensor fleet" }] ) ``` ### Configuration ```json { "mcpServers": { "thingsboard": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-thingsboard"], "env": { "THINGSBOARD_URL": "http://localhost:8080", "THINGSBOARD_TOKEN": "your-jwt-token" } } } } ``` ### Use Cases **Enterprise IoT**: Deploy scalable IoT solutions for enterprise. **Asset Tracking**: Track and monitor physical assets. **Smart Buildings**: Manage building automation systems. **Industrial IoT**: Monitor industrial equipment and processes. The ThingsBoard MCP Server brings enterprise IoT management into your workflow.
{
"mcpServers": {
"thingsboard": {}
}
}