Skip to content
VS Code

asic lookup for VS Code

io.github.keitaemsden-lab/asic-lookup

Look up any Australian company by ABN, ACN or name. USD 0.01 per lookup, paid in USDC via x402.

client:VS Code transport:stdio runtime:npm

Install asic lookup in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "spend-cap-usd",
      "description": "SPEND_CAP_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "private-key",
      "description": "PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "private-key-file",
      "description": "PRIVATE_KEY_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "max-price-usd-per-call",
      "description": "MAX_PRICE_USD_PER_CALL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "request-timeout-ms",
      "description": "REQUEST_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "asic-lookup": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@nightshiftbuilds/asic-lookup-mcp"
      ],
      "env": {
        "SPEND_CAP_USD": "${input:spend-cap-usd}",
        "PRIVATE_KEY": "${input:private-key}",
        "PRIVATE_KEY_FILE": "${input:private-key-file}",
        "MAX_PRICE_USD_PER_CALL": "${input:max-price-usd-per-call}",
        "REQUEST_TIMEOUT_MS": "${input:request-timeout-ms}"
      }
    }
  }
}

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

asic lookup in other clients