IoT device cloud platform.
## Particle MCP Server: IoT Device Cloud The **Particle MCP Server** integrates Particle IoT platform into Google Antigravity, enabling AI-assisted device fleet management, firmware deployment, and cloud function execution for connected devices. ### Why Particle MCP? - **Integrated Hardware**: Purpose-built IoT development boards - **Device Cloud**: Managed cloud infrastructure for IoT - **OTA Updates**: Seamless over-the-air firmware updates - **Webhooks**: Easy integration with external services - **Fleet Management**: Manage device fleets at scale ### Key Features #### 1. Device Fleet ```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 Particle devices and their online status" }] ) ``` #### 2. Cloud Functions ```python # Call functions response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Call cloud function on device to activate sensor" }] ) ``` #### 3. Variables ```python # Read variables response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get all exposed variables from device including sensor readings" }] ) ``` #### 4. Events ```python # Subscribe to events response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Subscribe to device events and show recent event history" }] ) ``` ### Configuration ```json { "mcpServers": { "particle": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-particle"], "env": { "PARTICLE_ACCESS_TOKEN": "your-access-token" } } } } ``` ### Use Cases **Product Development**: Build connected products with Particle hardware. **Fleet Operations**: Manage device fleets remotely. **Data Collection**: Gather and process IoT sensor data. **Remote Control**: Control devices through cloud functions. The Particle MCP Server brings professional IoT development into your workflow.
{
"mcpServers": {
"particle": {}
}
}