Skip to content
VS Code

au bizintel mcp for VS Code

io.github.ljdigital/au-bizintel-mcp

Australian business intelligence MCP — ABN lookup, business search & AI prospect assessment via ABR.

client:VS Code transport:stdio runtime:npm

Install au bizintel mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "abr-guid",
      "description": "ABR_GUID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "au-bizintel-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@ljdigital/au-bizintel-mcp"
      ],
      "env": {
        "ABR_GUID": "${input:abr-guid}",
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}"
      }
    }
  }
}

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

au bizintel mcp in other clients