abn_lookup
Pack: abn-lookup · Endpoint: https://gateway.pipeworx.io/abn-lookup/mcp
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 business names. Requires your own ABR web-services GUID via _apiKey (register free at https://abr.business.gov.au/Tools/WebServices). Example: abn_lookup({ abn: “37067751151”, _apiKey: “your-guid” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
abn | string | yes | Australian Business Number, 11 digits, with or without spaces (e.g. “37 067 751 151” or “37067751151”). |
_apiKey | string | yes |
Example call
Arguments
{
"abn": "37067751151"
}
curl
curl -X POST https://gateway.pipeworx.io/abn-lookup/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"abn_lookup","arguments":{"abn":"37067751151"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('abn_lookup', {
"abn": "37067751151"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"abn-lookup": {
"url": "https://gateway.pipeworx.io/abn-lookup/mcp"
}
}
}
See Getting Started for client-specific install steps.