herb_paper_detail
Pack: herb-tcm · Endpoint: https://gateway.pipeworx.io/herb-tcm/mcp
One reference’s bibliographic record (journal, PubMed id, experiment type, phenotype) plus the specific
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
paper_id | string | yes | HERB reference id, e.g. HBREF000003. |
Example call
Arguments
{
"paper_id": "HBREF000003"
}
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_paper_detail","arguments":{"paper_id":"HBREF000003"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('herb_paper_detail', {
"paper_id": "HBREF000003"
});
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.