artg_list

Pack: tga-artg · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/artg_list for the schema, then POST the same URL with its arguments for the data.

Walk the ENTIRE Australian Register of Therapeutic Goods (ARTG), in ARTG ID order, 100 entries per page — for bulk ingestion or counting, not for answering a question about one drug (use artg_search for that). Optionally restrict to one entry type (“Medicine Registered” ≈ 20,000 prescription/registered medicines; “Medicine” ≈ 34,000 incl. listed). Returns total, has_more and next_offset; pass offset to continue. Each row carries ARTG ID, name, entry type, sponsor, active ingredients, status, start date and PI/CMI links; use artg_entry for indications. Example: artg_list({ entry_type: “Medicine Registered”, offset: 0 }). Keyless.

Parameters

NameTypeRequiredDescription
entry_typestringnoRestrict to an ARTG entry type; matches its start, e.g. “Medicine”, “Medicine Registered”, “Medical Device”. Omit for the whole register.
offsetnumbernoEntries to skip (0-based). Use next_offset from the previous page.
limitnumbernoEntries per page (default and max 100)

Example call

Arguments

{
  "entry_type": "Medicine Registered"
}

curl

curl -X POST https://gateway.pipeworx.io/tga-artg/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"artg_list","arguments":{"entry_type":"Medicine Registered"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('artg_list', {
  "entry_type": "Medicine Registered"
});

Connect

Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the tga-artg pack
{
  "mcpServers": {
    "tga-artg": {
      "url": "https://gateway.pipeworx.io/tga-artg/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026