Regulatory Catalysts

live LegalProductivity

Regulatory Catalysts MCP — high-value biotech regulatory calendar events (keyless).

2 tools
0ms auth
free tier 50 calls/day

Tools

fda_adcom_calendar

Upcoming FDA advisory committee (AdCom) meeting calendar — a leading biotech regulatory catalyst. Lists FDA panel meetings announced in the Federal Register (keyless), extracting the scheduled meeting

No parameters required.

Try it
pdufa_catalysts

Companies with disclosed PDUFA dates — the highest-signal binary biotech catalyst. Searches recent SEC EDGAR 8-K filings (keyless) for PDUFA target / goal / action dates and extracts the date and surr

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/regulatory-catalysts/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/regulatory-catalysts/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"fda_adcom_calendar","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("fda_adcom_calendar", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("regulatory catalysts mcp — high-value biotech regulatory calendar events (keyless)");