symmap_symptom_herbs
Pack: symmap · Endpoint: https://gateway.pipeworx.io/symmap/mcp
Herbs traditionally associated with a symptom in SymMap v2 (symmap.org). system:“tcm” looks up a Traditional Chinese Medicine symptom (SMTS) directly; system:“modern” starts from a modern medical symptom (SMMS), returns its curated TCM-symptom crosswalk, then the herbs per mapped TCM symptom — the two vocabularies and the mapping hop stay explicit, never merged. Every hop carries evidence_tier; a traditional-use association is not evidence of effectiveness.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symptom | string | yes | Symptom name — TCM (e.g. 痹痛 / “Bi Tong”) for system:“tcm”, modern medical (e.g. “insomnia”, “Arthritic Pains”) for system:“modern” |
system | string | yes | Which symptom vocabulary the name belongs to. They are distinct in SymMap; this tool never merges them. |
limit | number | no | Max herbs returned per symptom, 1-100 (default 25) |
Example call
Arguments
{
"symptom": "Bi Tong",
"system": "tcm",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/symmap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"symmap_symptom_herbs","arguments":{"symptom":"Bi Tong","system":"tcm","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('symmap_symptom_herbs', {
"symptom": "Bi Tong",
"system": "tcm",
"limit": 5
});
More examples
{
"symptom": "insomnia",
"system": "modern",
"limit": 3
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"symmap": {
"url": "https://gateway.pipeworx.io/symmap/mcp"
}
}
}
See Getting Started for client-specific install steps.