Skip to content
VS Code

AWS IoT Core for VS Code

io.github.nagarjunr/aws-iot-core

MCP server for AWS IoT Core: device registry, shadows, jobs, rules, messaging.

client:VS Code transport:stdio runtime:pypi

Install AWS IoT Core in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aws-access-key-id",
      "description": "AWS_ACCESS_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-secret-access-key",
      "description": "AWS_SECRET_ACCESS_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-session-token",
      "description": "AWS_SESSION_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-profile",
      "description": "AWS_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-region",
      "description": "AWS_REGION",
      "password": true
    }
  ],
  "servers": {
    "aws-iot-core": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "aws-iot-core-mcp-server"
      ],
      "env": {
        "AWS_ACCESS_KEY_ID": "${input:aws-access-key-id}",
        "AWS_SECRET_ACCESS_KEY": "${input:aws-secret-access-key}",
        "AWS_SESSION_TOKEN": "${input:aws-session-token}",
        "AWS_PROFILE": "${input:aws-profile}",
        "AWS_REGION": "${input:aws-region}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

AWS IoT Core in other clients