Adafruit IO REST API Claude Desktop Config
Add the Adafruit IO REST API MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - Restart Claude Desktop
Configuration JSON
Copy the entire block into your claude_desktop_config.json
{
"mcpServers": {
"adafruit-com": {
"command": "npx",
"args": [
"-y",
"@mcp/adafruit-com"
],
"env": {
"ADAFRUIT_IO_REST_API_API_KEY": "your_adafruit_io_rest_api_api_key"
}
}
}
}Environment Variables
ADAFRUIT_IO_REST_API_API_KEYReplace your_adafruit_io_rest_api_api_key with your actual adafruit io rest api api key
Endpoints
GET
/userGet information about the current user
POST
/webhooks/feed/:tokenSend data to a feed via webhook URL.
POST
/webhooks/feed/:token/rawSend arbitrary data to a feed via webhook URL.
GET
/{username}/activitiesAll activities for current user
DELETE
/{username}/activitiesAll activities for current user
GET
/{username}/activities/{type}Get activities by type for current user
GET
/{username}/dashboardsAll dashboards for current user
POST
/{username}/dashboardsCreate a new Dashboard
GET
/{username}/dashboards/{dashboard_id}/blocksAll blocks for current user
POST
/{username}/dashboards/{dashboard_id}/blocksCreate a new Block