hsa_sg_search
Pack: hsa-singapore · 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/hsa_sg_search for the schema, then POST the same URL with its arguments for the data.
Search medicines registered in Singapore — the Health Sciences Authority (HSA) official listing of ~5,500
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Free text matched against product name, active ingredient, licence holder and licence number, e.g. “metformin”, “KEYTRUDA”, “SIN16061P”. |
active_ingredient | string | no | Active ingredient contains (case-insensitive), e.g. “PARACETAMOL”. |
atc_code | string | no | ATC code prefix, e.g. “A10BA” (biguanides) or “L01” (antineoplastics). |
holder | string | no | Product licence holder name contains, e.g. “PFIZER”. |
manufacturer | string | no | Manufacturer name contains. |
country | string | no | Country of manufacture, exact name as HSA writes it, e.g. “INDIA”, “GERMANY” (see hsa_sg_dataset_info). |
forensic_classification | string | no | Supply category. |
route | string | no | Route of administration contains, e.g. “ORAL”, “INTRAVENOUS”. |
dosage_form | string | no | Dosage form contains, e.g. “TABLET”, “INJECTION”. |
approved_from | string | no | Earliest approval date, YYYY-MM-DD. |
approved_to | string | no | Latest approval date, YYYY-MM-DD. |
limit | number | no | Max rows, default 25, max 200. |
offset | number | no | Row offset for pagination, default 0. |
Example call
Arguments
{
"query": "metformin",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/hsa-singapore/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hsa_sg_search","arguments":{"query":"metformin","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('hsa_sg_search', {
"query": "metformin",
"limit": 5
});
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 hsa-singapore pack
{
"mcpServers": {
"hsa-singapore": {
"url": "https://gateway.pipeworx.io/hsa-singapore/mcp"
}
}
}
See Getting Started for client-specific install steps.