artg_recent
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_recent for the schema, then POST the same URL with its arguments for the data.
New entries added to the Australian Register of Therapeutic Goods (ARTG) since a date — newly registered or listed medicines, biologicals and devices approved for supply in Australia. Covers NEW entries only: cancellations and variations to existing entries are not dated by the source and are not reported. Scans the newest ~500 entries; reports complete=false if the date is further back than that. Example: artg_recent({ since: “2026-09-15”, entry_type: “Medicine” }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since | string | yes | ISO date (YYYY-MM-DD); entries whose start date is on or after it |
entry_type | string | no | Restrict to an ARTG entry type, e.g. “Medicine”, “Medicine Registered” |
Example call
Arguments
{
"since": "2026-09-22",
"entry_type": "Medicine"
}
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_recent","arguments":{"since":"2026-09-22","entry_type":"Medicine"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('artg_recent', {
"since": "2026-09-22",
"entry_type": "Medicine"
});
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.