Abn Lookup

live Reference

ABN Lookup MCP — BYOK wrapper around the Australian Business Register's

3 tools
0ms auth
free tier 50 calls/day
🔑 Authentication

BYOK — there is no platform key. Every tool requires your own Australian Business Register web-services GUID, passed as _apiKey. Registration is free but requires accepting ABR's Web Services Agreement under your own identity.

Config with credentials

Tools

abn_lookup

BYOK. Look up an Australian Business Number (ABN): returns legal entity name, entity type, ABN status (active/cancelled) with effective date, GST registration, address state/postcode, and registered b

No parameters required.

Try it
acn_lookup

BYOK. Look up an Australian Company Number (ACN): returns the same detail as abn_lookup (legal entity name, entity type, ABN status, GST registration, address, business names) for the company's associ

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/abn-lookup/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/abn-lookup/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"abn_lookup","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("abn_lookup", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("abn lookup mcp — byok wrapper around the australian business register's");