artg_search

Pack: tga-artg · Endpoint: https://gateway.pipeworx.io/tga-artg/mcp

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

Search the Australian Register of Therapeutic Goods (ARTG) — every medicine, biological and medical device approved for supply in Australia — by product name, active ingredient, sponsor, or manufacturer. Returns each entry’s ARTG ID, entry type (e.g. “Medicine Registered”, “Medicine Listed”), sponsor, active ingredients, status, and links to its Product Information (PI, prescriber label) and Consumer Medicine Information (CMI, patient leaflet) documents. Answers “is X approved in Australia”, “which Australian products contain ibuprofen”, “who sponsors X in Australia”. This calls the TGA’s own JSON web service directly (data.tga.gov.au) rather than the interactive ARTG Search web tool. Example: artg_search({ ingredient: “paracetamol” }); artg_search({ sponsor: “Pfizer” }). Keyless.

Parameters

NameTypeRequiredDescription
namestringnoProduct/trade name, e.g. “Panadol”
ingredientstringnoActive ingredient, e.g. “paracetamol”, “ibuprofen”
productstringnoProduct name fragment (device/product-level, distinct from name)
sponsorstringnoSponsor (marketing-authorisation holder) name, e.g. “Pfizer”
manufacturerstringnoManufacturer name
limitnumbernoMax entries to return (default 25, max 100)

Example call

Arguments

{
  "ingredient": "paracetamol",
  "limit": 3
}

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_search","arguments":{"ingredient":"paracetamol","limit":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('artg_search', {
  "ingredient": "paracetamol",
  "limit": 3
});

More examples

{
  "ingredient": "ibuprofen",
  "limit": 3
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "tga-artg": {
      "url": "https://gateway.pipeworx.io/tga-artg/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 23, 2026