Microsoft Azure IoT platform.
## Azure IoT MCP Server: Microsoft IoT Platform The **Azure IoT MCP Server** integrates Azure IoT Hub into Google Antigravity, enabling AI-assisted device management, telemetry processing, and IoT solution development on Microsoft Azure. ### Why Azure IoT MCP? - **IoT Hub**: Managed service for bi-directional device communication - **Device Twins**: Digital representation of physical devices - **Direct Methods**: Invoke device methods for real-time interaction - **Message Routing**: Route messages to Azure services - **Edge Computing**: Extend cloud intelligence to edge devices ### Key Features #### 1. Device Registry ```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 IoT Hub with connection state and last activity" }] ) ``` #### 2. Telemetry ```python # Read telemetry response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get recent telemetry data from temperature sensors" }] ) ``` #### 3. Device Twins ```python # Manage twins response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Update device twin desired properties for configuration change" }] ) ``` #### 4. Direct Methods ```python # Invoke methods response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Call reboot method on device and wait for response" }] ) ``` ### Configuration ```json { "mcpServers": { "azure-iot": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-azure-iot"], "env": { "AZURE_IOT_HUB_CONNECTION_STRING": "your-connection-string" } } } } ``` ### Use Cases **Device Management**: Manage IoT devices at enterprise scale. **Telemetry Processing**: Collect and analyze device telemetry. **Remote Operations**: Control devices through cloud commands. **Edge Solutions**: Build hybrid cloud-edge IoT solutions. The Azure IoT MCP Server brings Microsoft IoT capabilities into your workflow.
{
"mcpServers": {
"azure-iot": {}
}
}