Skip to content
MCP-Bridge
Communication

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

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. 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_KEY

Replace your_adafruit_io_rest_api_api_key with your actual adafruit io rest api api key

Endpoints

GET/user

Get information about the current user

POST/webhooks/feed/:token

Send data to a feed via webhook URL.

POST/webhooks/feed/:token/raw

Send arbitrary data to a feed via webhook URL.

GET/{username}/activities

All activities for current user

DELETE/{username}/activities

All activities for current user

GET/{username}/activities/{type}

Get activities by type for current user

GET/{username}/dashboards

All dashboards for current user

POST/{username}/dashboards

Create a new Dashboard

GET/{username}/dashboards/{dashboard_id}/blocks

All blocks for current user

POST/{username}/dashboards/{dashboard_id}/blocks

Create a new Block