bankruptcy_recent
Pack: bankruptcy · Endpoint: https://gateway.pipeworx.io/bankruptcy/mcp
List recent US business bankruptcy filings, newest first, optionally limited to one bankruptcy court. No API key, no rate limit. Use for “what companies filed for bankruptcy recently” or to watch one district. Returns case name, docket number, court, filing and termination dates.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
court | string | no | Optional bankruptcy court id, e.g. “nysb”, “deb”, “txsb”. |
filed_after | string | no | Only filings on or after this date, YYYY-MM-DD. |
limit | number | no | Maximum filings to return (1-50, default 20). |
Example call
Arguments
{
"court": "ilnb",
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/bankruptcy/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bankruptcy_recent","arguments":{"court":"ilnb","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bankruptcy_recent', {
"court": "ilnb",
"limit": 10
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bankruptcy": {
"url": "https://gateway.pipeworx.io/bankruptcy/mcp"
}
}
}
See Getting Started for client-specific install steps.