Skip to content
MCP-BridgeMCP-Bridge
Cloud Infrastructure

AWS IoT Data Plane MCP Config

<fullname>IoT data</fullname> <p>IoT data enables secure, bi-directional communication between Internet-connected things (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. It implements a broker for applications and things to publish messages over

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/amazonaws-com-iot-data.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "amazonaws-com-iot-data": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/amazonaws-com-iot-data"
      ],
      "env": {
        "AWS_IOT_DATA_PLANE_API_KEY": "your_aws_iot_data_plane_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "amazonaws-com-iot-data": {
      "url": "https://mcpbridge.org/config/amazonaws-com-iot-data.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "amazonaws-com-iot-data": {
      "url": "https://mcpbridge.org/config/amazonaws-com-iot-data.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/amazonaws-com-iot-data.json to fetch programmatically.

{
  "mcpServers": {
    "amazonaws-com-iot-data": {
      "command": "npx",
      "args": ["-y","@mcp/amazonaws-com-iot-data"],
      "env": {
      "AWS_IOT_DATA_PLANE_API_KEY": "your_aws_iot_data_plane_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/amazonaws-com-iot-data.json

Environment Variables

AWS_IOT_DATA_PLANE_API_KEY

Replace your_aws_iot_data_plane_api_key with your actual aws iot data plane api key

Endpoints

GET/things/{thingName}/shadow

GetThingShadow

POST/things/{thingName}/shadow

UpdateThingShadow

DELETE/things/{thingName}/shadow

DeleteThingShadow

GET/retainedMessage/{topic}

GetRetainedMessage

GET/api/things/shadow/ListNamedShadowsForThing/{thingName}

ListNamedShadowsForThing

GET/retainedMessage

ListRetainedMessages

POST/topics/{topic}

Publish