Skip to content
VS Code

amazon seller for VS Code

io.github.wmarceau/amazon-seller

Amazon seller tools: FBA fees, inventory optimization, restock recommendations.

client:VS Code transport:stdio runtime:pypi

Install amazon seller in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "amazon-refresh-token",
      "description": "AMAZON_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-lwa-app-id",
      "description": "AMAZON_LWA_APP_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-lwa-client-secret",
      "description": "AMAZON_LWA_CLIENT_SECRET",
      "password": true
    }
  ],
  "servers": {
    "amazon-seller": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "amazon-seller-mcp"
      ],
      "env": {
        "AMAZON_REFRESH_TOKEN": "${input:amazon-refresh-token}",
        "AMAZON_LWA_APP_ID": "${input:amazon-lwa-app-id}",
        "AMAZON_LWA_CLIENT_SECRET": "${input:amazon-lwa-client-secret}"
      }
    }
  }
}

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

amazon seller in other clients