hsr_recent
Pack: hsr-notices · Endpoint: https://gateway.pipeworx.io/hsr-notices/mcp
Get the most recent FTC Hart-Scott-Rodino (HSR) early-termination notices, newest first. When a merger clears HSR antitrust review early the FTC publishes a notice — for a private-target deal this is the earliest public signal the merger was filed and cleared, ahead of any 8-K or press release. Returns acquirer, target, transaction number and filing date. Answers “what mergers got antitrust clearance recently” or “which deals received HSR early termination this week.” Example: hsr_recent({ days: 7, limit: 25 })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
days | number | no | How many days back from today to look. Default 7. |
limit | number | no | Max notices to return, newest first (paged from the source in batches of 50). Default 25, max 100. |
_apiKey | string | no | Optional — your own api.data.gov key for higher limits; omit to use the shared Pipeworx key. |
Example call
Arguments
{
"days": 30
}
curl
curl -X POST https://gateway.pipeworx.io/hsr-notices/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hsr_recent","arguments":{"days":30}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('hsr_recent', {
"days": 30
});
More examples
{
"days": 90,
"limit": 25
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"hsr-notices": {
"url": "https://gateway.pipeworx.io/hsr-notices/mcp"
}
}
}
See Getting Started for client-specific install steps.