tcm_product_search
Pack: tcm-products · Endpoint: https://gateway.pipeworx.io/tcm-products/mcp
Search ~12,000 Traditional Chinese Medicine (TCM) / Chinese Proprietary Medicine products licensed by Singapore’s Health Sciences Authority (HSA), sourced from data.gov.sg. Matches Chinese characters (板蓝根), pinyin with or without spaces (banlangen / Ban Lan Gen), and English brand or product names — the licensed name fields carry both scripts. Filter by company, manufacturer, country of manufacture, or dosage form. ${LISTING_CAVEAT}
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Product or brand name in Chinese characters, pinyin (spaced or not), or English — e.g. “板蓝根”, “banlangen”, “Ban Lan Gen”, “SANJIN”. Omit to list by filters alone. |
company | string | no | Licence-holding company name contains (case-insensitive), e.g. “EU YAN SANG” |
manufacturer | string | no | Manufacturer name contains (case-insensitive) |
country | string | no | Country of manufacture contains (case-insensitive), e.g. “CHINA”, “SINGAPORE” |
dosage_form | string | no | Dosage form contains (case-insensitive), e.g. “granules”, “capsules”, “pills” |
limit | number | no | Max products returned, 1-200 (default 25) |
offset | number | no | 0-based offset into the matches, for paging |
Example call
Arguments
{
"query": "板蓝根"
}
curl
curl -X POST https://gateway.pipeworx.io/tcm-products/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tcm_product_search","arguments":{"query":"板蓝根"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tcm_product_search', {
"query": "板蓝根"
});
More examples
{
"query": "banlangen"
}
{
"query": "SANJIN",
"country": "CHINA"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"tcm-products": {
"url": "https://gateway.pipeworx.io/tcm-products/mcp"
}
}
}
See Getting Started for client-specific install steps.