herb_experiments
Pack: herb-tcm · Endpoint: https://gateway.pipeworx.io/herb-tcm/mcp
List HERB’s transcriptomic experiments (herb/ingredient treatment vs. control, GEO-deposited) — the raw
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
drug_type | string | no | |
species | string | no | |
experiment_type | string | no | |
limit | number | no | Max rows to return, default 25, max 100. |
offset | number | no | 0-based offset for paging past the first limit rows. |
Example call
Arguments
{
"drug_type": "Herb",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/herb-tcm/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"herb_experiments","arguments":{"drug_type":"Herb","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('herb_experiments', {
"drug_type": "Herb",
"limit": 5
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"herb-tcm": {
"url": "https://gateway.pipeworx.io/herb-tcm/mcp"
}
}
}
See Getting Started for client-specific install steps.