Skip to content
VS Code

Yaw Labs AWS MCP for VS Code

io.github.yawlabs/aws-mcp

AWS MCP server — call any AWS API from AI assistants, with first-class SSO re-login

client:VS Code transport:stdio runtime:npm

Install Yaw Labs AWS MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aws-profile",
      "description": "AWS_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-region",
      "description": "AWS_REGION",
      "password": true
    }
  ],
  "servers": {
    "aws-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@yawlabs/aws-mcp"
      ],
      "env": {
        "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

Yaw Labs AWS MCP in other clients