Skip to content
VS Code

assay for VS Code

io.github.jasonczmeng/assay

x402 service-quality oracle: check a service's paid-probe quality tier and score before paying it.

client:VS Code transport:stdio runtime:npm

Install assay in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "assay-url",
      "description": "ASSAY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "assay-wallet-key",
      "description": "ASSAY_WALLET_KEY",
      "password": true
    }
  ],
  "servers": {
    "assay": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "assay-oracle-mcp"
      ],
      "env": {
        "ASSAY_URL": "${input:assay-url}",
        "ASSAY_WALLET_KEY": "${input:assay-wallet-key}"
      }
    }
  }
}

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

assay in other clients