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

NameTypeRequiredDescription
querystringnoProduct 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.
companystringnoLicence-holding company name contains (case-insensitive), e.g. “EU YAN SANG”
manufacturerstringnoManufacturer name contains (case-insensitive)
countrystringnoCountry of manufacture contains (case-insensitive), e.g. “CHINA”, “SINGAPORE”
dosage_formstringnoDosage form contains (case-insensitive), e.g. “granules”, “capsules”, “pills”
limitnumbernoMax products returned, 1-200 (default 25)
offsetnumberno0-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.

Regenerated from source · build September 8, 2026