biotech_news
Pack: biotech-news · Endpoint: https://gateway.pipeworx.io/biotech-news/mcp
Latest biotech and pharmaceutical industry news headlines: FDA drug approvals and rejections, clinical trial results and data readouts, biotech M&A and licensing deals, venture funding rounds, layoffs and restructurings. Aggregates Fierce Biotech, Endpoints News, BioPharma Dive, STAT biotech, Fierce Pharma and GEN in one call, merged newest-first. Filter by keyword (e.g. “approval”, a drug or company name) and a trailing day window.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Keyword filter over title/summary, e.g. “FDA approval”, “obesity”, a company name. |
days | number | no | Only items published in the last N days (default 7). |
limit | number | no | Max items (1-50, default 25). |
source | string | no | Restrict to one source id (from biotech_news_sources), e.g. “endpoints”. |
Example call
Arguments
{
"days": 7,
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/biotech-news/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"biotech_news","arguments":{"days":7,"limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('biotech_news', {
"days": 7,
"limit": 10
});
More examples
{
"query": "FDA",
"days": 14,
"limit": 10
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"biotech-news": {
"url": "https://gateway.pipeworx.io/biotech-news/mcp"
}
}
}
See Getting Started for client-specific install steps.