Skip to content
VS Code

Attribloom for VS Code

com.attribloom/mcp

Affiliate attribution and commission data for iOS (StoreKit 2) and Shopify

client:VS Code transport:stdio runtime:npm

Install Attribloom in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "attribloom-api-key",
      "description": "ATTRIBLOOM_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "attribloom-base-url",
      "description": "ATTRIBLOOM_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@attribloom/mcp"
      ],
      "env": {
        "ATTRIBLOOM_API_KEY": "${input:attribloom-api-key}",
        "ATTRIBLOOM_BASE_URL": "${input:attribloom-base-url}"
      }
    }
  }
}

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

Attribloom in other clients