Skip to content
VS Code

amazon creators for VS Code

io.github.houtini-ai/amazon-creators

Amazon product search returning paste-ready affiliate deal rows for your blog

client:VS Code transport:stdio runtime:npm

Install amazon creators in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "amazon-client-id",
      "description": "AMAZON_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-client-secret",
      "description": "AMAZON_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-partner-tag",
      "description": "AMAZON_PARTNER_TAG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-credential-version",
      "description": "AMAZON_CREDENTIAL_VERSION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-marketplace",
      "description": "AMAZON_MARKETPLACE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-max-concurrency",
      "description": "AMAZON_MAX_CONCURRENCY",
      "password": true
    }
  ],
  "servers": {
    "amazon-creators": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@houtini/amazon-creators-mcp"
      ],
      "env": {
        "AMAZON_CLIENT_ID": "${input:amazon-client-id}",
        "AMAZON_CLIENT_SECRET": "${input:amazon-client-secret}",
        "AMAZON_PARTNER_TAG": "${input:amazon-partner-tag}",
        "AMAZON_CREDENTIAL_VERSION": "${input:amazon-credential-version}",
        "AMAZON_MARKETPLACE": "${input:amazon-marketplace}",
        "AMAZON_MAX_CONCURRENCY": "${input:amazon-max-concurrency}"
      }
    }
  }
}

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

amazon creators in other clients