HERB 2.0 (herb.ac.cn) — Traditional Chinese Medicine herb/ingredient/target/
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
claude mcp add mcp-herb-tcm -- npx -y @pipeworx/mcp-herb-tcm{
"mcpServers": {
"mcp-herb-tcm": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-herb-tcm"]
}
}
}MCP Servers overview
# @pipeworx/herb-tcm
HERB 2.0's Traditional Chinese Medicine knowledge base — herbs, ingredients,
gene targets, diseases, PubMed-cited papers and GEO transcriptomic
experiments — proxied live from herb.ac.cn, with every relationship row
tagged an `evidence_tier` so a statistical prediction is never mistaken for
proof of efficacy.
Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1576+ live data sources.
## Tools
- `herb_search(keyword, category?)` — resolve a name to an id. Accepts
Chinese characters, pinyin, English/Latin names, gene names/aliases,
disease names, or a HERB id itself. `category` is one of `herb` /
`ingredient` / `target` / `disease` (default `herb`).
- `herb_browse(category, page?, page_size?)` — page through the full
herb/ingredient/target/disease list (7,263 / 49,258 / 12,933 / 28,212 rows
respectively).
- `herb_detail(id, category, limit?, offset?, sections?)` — the full record
for one id: composition, traditional-use summary, and every predicted or
literature-backed target/disease relationship, each carrying its
`evidence_tier`. Relationship tables are paged (fleet #1399 — an unpaged
well-studied herb ran to 806 KB): each comes back as
`{total, offset, limit, returned, truncated, rows}` where `total` is the
TRUE upstream row count and `truncated: true` says more rows exist — so a
25-row slice can never be mistaken for 25 rows existing. `limit` defaults
to 25 (the pack's precedent, set by `herb_papers`), max 200; `offset` pages;
`sections` (e.g. `["summary","herb_ingredient"]`) fetches composition
without pulling thousands of predicted disease rows, and an unknown section
name errors loudly rather than silently returning nothing. We chose
client-side slicing over a `sections`-only design because `detail_api` has
no server-side paging (one upstream call returns everything regardless), so
the slice costs nothing extra and the envelope keeps the caller honest.
`ingredient_alias` (a small synonym list) is never paged.
- `herb_papers(drug_type?, experiment_type?, sort_by?, limit?, offset?)` —
list PubMed-cited references, each tagged `human_clinical` or `laboratory`.
- `herb_paper_detail(paper_id)` — one reference's bibliographic record plus
the specific targets/diseases it reports.
- `herb_experiments(drug_type?, species?, experiment_type?, limit?, offset?)`
— list GEO-deposited herb/ingredient-vs-control transcriptomic experiments.
- `herb_experiment_detail(experiment_id)` — differential-expression results
for one experiment: top up/down genes, enriched GO/KEGG terms,
connectivity-map hit counts. Always `evidence_tier: computational_prediction`.
### Evidence tiers
Every relationship row carries one of:
| Tier | Meaning |
|---|---|
| `traditional_use` | From the herb's Pharmacopoeia-style summary (Function/Indication/Meridians). Historical use, not a trial. |
| `human_clinical` | A PubMed-cited paper whose HERB-assigned "Experiment type" includes "Clinical Experiment" — it studied humans. |
| `laboratory` | A PubMed-cited paper studying cells or animals only. |
| `computational_prediction` | A statistical enrichment or database cross-reference with **no** clinical or experimental confirmation. This is a hypothesis, not evidence the herb/ingredient treats anything. |
| `compositional_fact` | "This ingredient occurs in this herb" — a composition fact, not an efficacy claim at all. |
`herb_target` / `herb_disease` (statistical enrichment, p-value + FDR_BH
columns), `ingredient_target` / `ingredient_disease` / `target_disease`
(curated cross-references with no clinical backing) and every
`herb_experiment_detail` row are `computational_prediction`.
`drug_paper_target` / `drug_paper_disease` (PubMed-cited) are split into
`human_clinical` or `laboratory` by resolving each cited paper's own
"Experiment type" — see Data sources below for how.
## Auth
Keyless. herb.ac.cn requires no account, token or payment — it is public
data served to anyone.
## Data sources
- `http://herb.ac.cn/chedi/api/` — herb.ac.cn is a umi single-page app with
no REST surface (every path returns the same ~900-byte shell). The real API
is this one POST endpoint, dispatching on a `func_name` body field, found
in the site's own JS bundle (`http://herb.ac.cn/static/umi.js`). Seven
verbs, confirmed live 2026-09-08: `search_api`, `detail_api`, `browse_api`,
`paper_api`, `paper_detail_api`, `experiment_api`, `experiment_detail_api`.
Notes for the next person:
- **http only**, and Chinese-hosted — measured 200ms-1.5s per call from this
session but expect latency and occasional unreachability; several `.cn`
sources are known-flaky from our vantage. This is a known class, not a bug
— report it rather than retrying hard.
- Every response is served as `text/html`, including successful ones — do
**not** branch on `Content-Type`. The only reliable signal for "no such id"
is the HTTP status: a bad `key_id`/`label`/`paper_key_id`/`drug_GSE_id`
returns **HTTP 500** with an HTML "Internal Server Error" page; an unknown
`func_name` returns HTTP 200 with the literal body `null`.
`parseJson`/`httpError` from `@pipeworx/shared` handle both shapes.
- Cells in every table are either a plain value or `{link, title}` /
`{style, title}` — even header cells in the differential-expression tables
come this way (`{filterable, sortable, title}`). `tableToRows` in
`src/index.ts` unwraps every shape to a plain string/number.
- `detail_api` needs **three** params, not just the id: `key_id`, `label`
(must match the id's category — `HERB…` ids need `label: "Herb"`, etc.)
and `v` (the site's own UI passes the id again under this name; omitting
it was not tested and isn't worth risking).
- `drug_paper_target`/`drug_paper_disease` rows (inside `herb_detail`) carry
a Paper id but not that paper's own experiment type, and a cited herb can
reference 20-100+ papers. Rather than firing one `paper_detail_api` call
per paper (impolite fan-out against a slow host), `herb_detail` makes ONE
extra call to `paper_api` unfiltered — which returns HERB's entire
~2,000-row reference index including "Experiment type" per id — and
resolves the tier from that in-memory lookup. Nothing from it is cached
across tool calls; it is refetched live every time `herb_detail` needs it.
- `Ingredient_alias` (inside an ingredient's `detail_api` response) is **not**
a table — it's a one-element array holding one semicolon-joined string of
synonyms. Treating it as a table throws (`table[0].map is not a function`);
split on `;` instead.
- `experiment_detail_api`'s `Experiment_detail` field nests everything one
level deeper than expected: it's an object with exactly one key, named
"HBEXP000001 Data Detail" (the experiment id plus a fixed suffix), whose
value is `{ data: {...} }`. The differential-expression/GO/KEGG/CMAP
tables live under that single value's `data` field — `src/index.ts` grabs
it with `Object.values(...)[0]?.data` rather than building the key string,
since the exact suffix isn't documented anywhere.
- `paper_api` and `experiment_api` have no server-side pagination — each call
returns the FULL filtered list (~2,000 papers / ~1,000 experiments
unfiltered) in one response. `herb_papers`/`herb_experiments` slice
client-side with `limit`/`offset`; a tighter `drug_type`/`experiment_type`
filter reduces what herb.ac.cn itself has to compute and send.
- **Licensing**: settled by Bruce, fleet #1389 (2026-09-08) — a live
per-request proxy call is a client, not a publisher, so it needs no
explicit reuse grant the way bulk-copying the dataset would. This pack
must stay a proxy: no bulk download, no full local mirror, no cached
complete copy of herb.ac.cn's data.
## Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
```json
{
"mcpServers": {
"herb-tcm": {
"url": "https://gateway.pipeworx.io/herb-tcm/mcp"
}
}
}
```
### What this endpoint actually serves
`tools/list` at `https://gateway.pipeworx.io/herb-tcm/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 1576+ data sources. The
only difference is which pack's tools are listed **directly**; `ask_pipeworx`
reaches all of them from either one.
## Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no
gateway round-trip:
```json
{
"mcpServers": {
"herb-tcm": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-herb-tcm"]
}
}
}
```
Or run it directly to confirm it starts:
```bash
npx -y @pipeworx/mcp-herb-tcm
```
It speaks MCP over stdin/stdout and answers `initialize`/`tools/list`/`tools/call`
for **only** this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
## Using witWhat people ask about mcp-herb-tcm
What is pipeworx-io/mcp-herb-tcm?
+
pipeworx-io/mcp-herb-tcm is mcp servers for the Claude AI ecosystem. HERB 2.0 (herb.ac.cn) — Traditional Chinese Medicine herb/ingredient/target/ It has 0 GitHub stars and its last recorded update is dated 2026-09-16.
How do I install mcp-herb-tcm?
+
You can install mcp-herb-tcm by cloning the repository (https://github.com/pipeworx-io/mcp-herb-tcm) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is pipeworx-io/mcp-herb-tcm safe to use?
+
Our security agent has analyzed pipeworx-io/mcp-herb-tcm 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-herb-tcm?
+
pipeworx-io/mcp-herb-tcm is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-16, with 0 open issues.
Are there alternatives to mcp-herb-tcm?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy mcp-herb-tcm 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.
[](https://claudewave.com/repo/pipeworx-io-mcp-herb-tcm)<a href="https://claudewave.com/repo/pipeworx-io-mcp-herb-tcm"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-herb-tcm" alt="Featured on ClaudeWave: pipeworx-io/mcp-herb-tcm" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ
The fastest path to AI-powered full stack observability, even for lean teams.