herb_monograph_status
Pack: ema-medicines · Endpoint: https://gateway.pipeworx.io/ema-medicines/mcp
The European Medicines Agency (EMA) herbal-monograph assessment status for one herb by Latin name — the HMPC assessment status code and label (e.g. finalised, ongoing call for scientific data), the outcome of the European assessment (EU herbal monograph and/or EU list entry), and a note on well-established-use vs traditional-use classification. Answers “is the EMA valerian monograph well-established use or traditional use”, “what is the assessment status of the EU chamomile monograph”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latin | string | yes | Latin name, e.g. “Valerianae radix”. |
Example call
Arguments
{
"latin": "Valerianae radix"
}
curl
curl -X POST https://gateway.pipeworx.io/ema-medicines/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"herb_monograph_status","arguments":{"latin":"Valerianae radix"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('herb_monograph_status', {
"latin": "Valerianae radix"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ema-medicines": {
"url": "https://gateway.pipeworx.io/ema-medicines/mcp"
}
}
}
See Getting Started for client-specific install steps.