abn_search
Pack: abn-lookup · Endpoint: https://gateway.pipeworx.io/abn-lookup/mcp
BYOK. Search the Australian Business Register by entity or business name and return ranked ABN matches. Requires your own ABR web-services GUID via _apiKey (register free at https://abr.business.gov.au/Tools/WebServices). Example: abn_search({ name: “Frame Promotional Products”, _apiKey: “your-guid” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Entity or business name to search for, e.g. “Frame Promotional Products”. |
state | string | no | Optional Australian state/territory abbreviation to filter results client-side (e.g. “NSW”, “VIC”). Applied after the ABR search returns, matched against each result’s state field when present. |
maxResults | number | no | Maximum number of matches to return (ABR default is small; pass a higher number for more). Default 20. |
_apiKey | string | yes |
Example call
Arguments
{
"name": "Frame Promotional Products"
}
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_search","arguments":{"name":"Frame Promotional Products"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('abn_search', {
"name": "Frame Promotional Products"
});
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.