Skip to content
VS Code

keepa mcp for VS Code

io.github.purahmanian/keepa-mcp

MCP server for Keepa Amazon price and sales rank history API

client:VS Code transport:stdio runtime:npm

Install keepa mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "keepa-api-key",
      "description": "KEEPA_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "keepa-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "keepa-mcp"
      ],
      "env": {
        "KEEPA_API_KEY": "${input:keepa-api-key}"
      }
    }
  }
}

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

keepa mcp in other clients