tcm_product_manufacturers
Pack: tcm-products · Endpoint: https://gateway.pipeworx.io/tcm-products/mcp
Manufacturers of Singapore HSA-licensed Traditional Chinese Medicine (TCM) / Chinese Proprietary Medicine products, aggregated from data.gov.sg with licensed-product counts and countries — the supply-chain view (who makes licensed CPM products, where). Optionally filter by country of manufacture or manufacturer name. ${LISTING_CAVEAT}
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | no | Country of manufacture contains (case-insensitive), e.g. “CHINA” |
manufacturer | string | no | Manufacturer name contains (case-insensitive) |
limit | number | no | Max manufacturers returned, 1-500 (default 50), sorted by licensed-product count |
Example call
Arguments
{
"country": "SINGAPORE"
}
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_manufacturers","arguments":{"country":"SINGAPORE"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tcm_product_manufacturers', {
"country": "SINGAPORE"
});
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.