Skip to content
VS Code

StablecoinX for VS Code

io.github.e2xlabs/stablecoinx-mcp

Drive a StablecoinX business account — auth, API keys, sessions, paymaster policy, webhooks.

client:VS Code transport:stdio runtime:npm

Install StablecoinX in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "scx-state-passphrase",
      "description": "SCX_STATE_PASSPHRASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "scx-state-dir",
      "description": "SCX_STATE_DIR",
      "password": true
    }
  ],
  "servers": {
    "stablecoinx-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@stablecoinx/mcp"
      ],
      "env": {
        "SCX_STATE_PASSPHRASE": "${input:scx-state-passphrase}",
        "SCX_STATE_DIR": "${input:scx-state-dir}"
      }
    }
  }
}

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

StablecoinX in other clients