Skip to content
VS Code

Swell MCP for VS Code

io.github.devkindhq/swell

Model Context Protocol server for Swell e-commerce platform integration with AI assistants

client:VS Code transport:stdio runtime:npm

Install Swell MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "swell-store-id",
      "description": "SWELL_STORE_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "swell-secret-key",
      "description": "SWELL_SECRET_KEY",
      "password": true
    }
  ],
  "servers": {
    "swell": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "swell-mcp"
      ],
      "env": {
        "SWELL_STORE_ID": "${input:swell-store-id}",
        "SWELL_SECRET_KEY": "${input:swell-secret-key}"
      }
    }
  }
}

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

Swell MCP in other clients