herb_experiment_detail
Pack: herb-tcm · Endpoint: https://gateway.pipeworx.io/herb-tcm/mcp
Differential-expression results for one HERB transcriptomic experiment: top up/down-regulated genes and
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
experiment_id | string | yes | HERB experiment id, e.g. HBEXP000001. |
Example call
Arguments
{
"experiment_id": "HBEXP000001"
}
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_experiment_detail","arguments":{"experiment_id":"HBEXP000001"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('herb_experiment_detail', {
"experiment_id": "HBEXP000001"
});
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.