Skip to main content
ClaudeWave

Traditional Chinese Medicine (TCM) products licensed in Singapore — the HSA Chinese Proprietary Medicine listing (~12,000 products) sourced from data.gov.sg, searchable by Chinese characters, pinyin or English name.

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/8/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/pipeworx-io/mcp-tcm-products
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-tcm-products": {
      "command": "node",
      "args": ["/path/to/mcp-tcm-products/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/pipeworx-io/mcp-tcm-products and follow its README for install instructions.
Use cases

MCP Servers overview

# @pipeworx/tcm-products

Traditional Chinese Medicine (TCM) / Chinese Proprietary Medicine products
licensed in Singapore — the Health Sciences Authority (HSA) "Listing of
Licensed Chinese Proprietary Medicine Products" (~12,000 products), sourced
from data.gov.sg, searchable by Chinese characters, pinyin (spaced or not),
or English name.

Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1543+ live data sources.

An HSA licence is a **safety and quality listing only** — it is not evidence
that a product treats any condition. The dataset carries no ingredients and
no indications; it is a product inventory, and the tools describe it as one.

## Tools

- `tcm_product_search(query?, company?, manufacturer?, country?, dosage_form?, limit?, offset?)` —
  products matching a name in any script (板蓝根 / banlangen / Ban Lan Gen /
  SANJIN all work; the licensed name fields carry Chinese characters inline
  next to the romanised names, so matching needs no translation source).
  Filters are case-insensitive substring matches on their columns.
- `tcm_product_manufacturers(country?, manufacturer?, limit?)` — manufacturers
  aggregated with licensed-product counts and countries of manufacture; the
  supply-chain view of who makes licensed CPM products and where.

## Why a separate pack, not tools on data-gov-sg

Fleet #1380. `data_gov_sg_query_dataset` filters by exact column value, so it
structurally cannot answer an alias query, and `search_packs("traditional
chinese medicine")` found nothing TCM-shaped — the gap was discoverability.
A pack whose name and descriptions say "Traditional Chinese Medicine" is what
makes the catalog search find the data; two named tools buried in a
general-purpose Singapore pack would not.

## Auth

Keyless.

## Data sources

- <https://data.gov.sg/api/action/datastore_search?resource_id=d_2ae2e6beb458d059318c1c14ad899f98> —
  the full export. One request returns all rows (`limit=12000` → 11,977 rows,
  ~1.9 MB, verified 2026-09-08); the pack fetches it once per isolate and
  caches for 24h, because data.gov.sg rate-limits aggressively per caller
  (429s measured in fleet #1380) and the dataset updates roughly monthly.
- CKAN's full-text `q` parameter is **rejected** by data.gov.sg
  (`"q is invalid"`, verified 2026-09-08) — server-side text search does not
  exist on this surface, which is why matching is done in the Worker.
- Dataset metadata: <https://api-production.data.gov.sg/v2/public/api/datasets/d_2ae2e6beb458d059318c1c14ad899f98/metadata>
  (managed by Health Sciences Authority, last updated 2026-08-07 at check time).

## Licence

Singapore Open Data Licence v1.0 (<https://data.gov.sg/open-data-licence>) —
worldwide, perpetual, royalty-free, commercial use permitted with attribution.
Verified 2026-09-08: the dataset page shows "Open Data Licence" and the licence
text covers datasets on data.gov.sg. Attribution notice (included in every tool
response): *Contains information from "Listing of Licensed Chinese Proprietary
Medicine Products" (Health Sciences Authority) from data.gov.sg, made available
under the terms of the Singapore Open Data Licence version 1.0.*

## Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

```json
{
  "mcpServers": {
    "tcm-products": {
      "url": "https://gateway.pipeworx.io/tcm-products/mcp"
    }
  }
}
```

### What this endpoint actually serves

`tools/list` at `https://gateway.pipeworx.io/tcm-products/mcp` returns the tools in the table
above **plus the shared Pipeworx meta-tools** — `ask_pipeworx`,
`discover_tools`, `search_within`, `remember`/`recall` and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's `initialize` response states its exact scope, and
is the authoritative answer for a given day.

This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
`ask_pipeworx`, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.

Or connect to the full Pipeworx gateway to get every pack's tools listed
directly, instead of just this one's:

```json
{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}
```

Both URLs reach the same gateway and the same 1543+ data sources. The
only difference is which pack's tools are listed **directly**; `ask_pipeworx`
reaches all of them from either one.

## Using with ask_pipeworx

Instead of calling tools directly, you can ask questions in plain English —
this works on the pack endpoint above as well as on the full gateway:

```
ask_pipeworx({ question: "your question about Tcm Products data" })
```

The gateway picks the right tool and fills the arguments automatically.

## More

- [Docs and guides](https://pipeworx.io/docs)
- [pipeworx.io](https://pipeworx.io)

## License

MIT
mcpmcp-servermodel-context-protocolpipeworxtcm-products

What people ask about mcp-tcm-products

What is pipeworx-io/mcp-tcm-products?

+

pipeworx-io/mcp-tcm-products is mcp servers for the Claude AI ecosystem. Traditional Chinese Medicine (TCM) products licensed in Singapore — the HSA Chinese Proprietary Medicine listing (~12,000 products) sourced from data.gov.sg, searchable by Chinese characters, pinyin or English name. It has 0 GitHub stars and its last recorded update is dated 2026-09-08.

How do I install mcp-tcm-products?

+

You can install mcp-tcm-products by cloning the repository (https://github.com/pipeworx-io/mcp-tcm-products) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is pipeworx-io/mcp-tcm-products safe to use?

+

Our security agent has analyzed pipeworx-io/mcp-tcm-products and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains pipeworx-io/mcp-tcm-products?

+

pipeworx-io/mcp-tcm-products is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-08, with 0 open issues.

Are there alternatives to mcp-tcm-products?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy mcp-tcm-products to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: pipeworx-io/mcp-tcm-products
[![Featured on ClaudeWave](https://claudewave.com/api/badge/pipeworx-io-mcp-tcm-products)](https://claudewave.com/repo/pipeworx-io-mcp-tcm-products)
<a href="https://claudewave.com/repo/pipeworx-io-mcp-tcm-products"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-tcm-products" alt="Featured on ClaudeWave: pipeworx-io/mcp-tcm-products" width="320" height="64" /></a>

More MCP Servers

mcp-tcm-products alternatives