IoT platform for connected hardware.
## Blynk MCP Server: IoT App Platform The **Blynk MCP Server** integrates Blynk IoT platform into Google Antigravity, enabling AI-assisted IoT app development, device control, and data visualization without writing mobile app code. ### Why Blynk MCP? - **No-Code Apps**: Build IoT control apps without mobile development - **Widget Library**: Drag-and-drop widgets for buttons, graphs, and displays - **Real-Time**: Low-latency communication with IoT devices - **Data Storage**: Built-in data storage and history - **Notifications**: Push notifications and alerts from devices ### Key Features #### 1. Device Control ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Send command to Blynk device to turn on relay on pin V1" }] ) ``` #### 2. Data Reading ```python # Read device data response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get sensor readings from Blynk virtual pins V0 through V5" }] ) ``` #### 3. Notifications ```python # Send alerts response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Send push notification when temperature exceeds threshold" }] ) ``` #### 4. Data History ```python # Access history response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get temperature history for the past 24 hours" }] ) ``` ### Configuration ```json { "mcpServers": { "blynk": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-blynk"], "env": { "BLYNK_AUTH_TOKEN": "your-auth-token", "BLYNK_SERVER": "blynk.cloud" } } } } ``` ### Use Cases **Home Automation**: Control smart home devices remotely. **Monitoring**: Monitor sensors and receive alerts. **Prototyping**: Quickly prototype IoT control interfaces. **Data Logging**: Log and visualize sensor data over time. The Blynk MCP Server brings IoT app development into your workflow.
{
"mcpServers": {
"blynk": {}
}
}