hsa_sg_product
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_product for the schema, then POST the same URL with its arguments for the data.
The full HSA registration record for one Singapore therapeutic product, by SIN licence number (exact) or product
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
licence_no | string | no | SIN licence number, e.g. “SIN06670P”. |
name | string | no | Product name as registered, e.g. “DOUBLE PARROT BRAND ADULT FEVER TABLETS 500 mg”. Used when licence_no is not given. |
Example call
Arguments
{
"licence_no": "SIN06670P"
}
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_product","arguments":{"licence_no":"SIN06670P"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('hsa_sg_product', {
"licence_no": "SIN06670P"
});
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.