bodacc_insolvency_feed
Pack: bodacc · Endpoint: https://gateway.pipeworx.io/bodacc/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/bodacc_insolvency_feed for the schema, then POST the same URL with its arguments for the data.
Recent French insolvency-proceeding notices (familleavis=“collective”: redressement judiciaire, liquidation judiciaire, sauvegarde and their related deposit/judgment notices) published since a given date, newest first. Built for monitoring — poll with an advancing since to catch new insolvency events. Optionally narrow to a département. For a specific company’s status use bodacc_company_events instead.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since | string | yes | Only notices published on/after this date, YYYY-MM-DD. Required. |
until | string | no | Only notices published on/before this date, YYYY-MM-DD. Omit for open-ended (up to today). |
departement | string | no | French département code to filter on, e.g. “75” (Paris). |
limit | number,string | no | Number of notices to return (1-100). Default 20. |
offset | number,string | no | Result offset for pagination. Default 0. offset+limit is capped at 10,000 by the upstream API. |
Example call
Arguments
{
"since": "2026-09-20"
}
curl
curl -X POST https://gateway.pipeworx.io/bodacc/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bodacc_insolvency_feed","arguments":{"since":"2026-09-20"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bodacc_insolvency_feed', {
"since": "2026-09-20"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bodacc": {
"url": "https://gateway.pipeworx.io/bodacc/mcp"
}
}
}
See Getting Started for client-specific install steps.