bodacc_company_events
Pack: bodacc · Endpoint: https://gateway.pipeworx.io/bodacc/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/bodacc_company_events for the schema, then POST the same URL with its arguments for the data.
Full BODACC event history for one French company: every dated notice published for it — creations, insolvency proceedings (redressement/liquidation judiciaire), business sales/transfers, deregistrations, modifications, account filings, conciliation. Look up by SIREN (the 9-digit id shared with the entreprises-fr and insee packs — chain a SIREN from either into this tool) or by company name. Sorted newest first. Use this to answer “has this supplier entered insolvency / sold its business / been deregistered?”
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
siren | string | no | 9-digit French SIREN identifier, e.g. “805243102” (spaces ignored). Preferred over name — exact match. |
name | string | no | Company name (commerçant/dénomination) to search when SIREN is unknown, e.g. “Marine Services Maintenance”. Free-text, matches any word. |
event_type | string | no | Restrict to one event family — one of: ${EVENT_TYPES.join(’, ’)}. English aliases also accepted: sale/transfer→vente, insolvency/bankruptcy→collective, deregistration/deletion→radiation, accounts→dpc, registration→immatriculation. Omit for the full history. |
limit | number,string | no | Number of notices to return (1-100). Default 20. |
offset | number,string | no | Result offset for pagination. Default 0. |
Example call
Arguments
{
"siren": "805243102"
}
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_company_events","arguments":{"siren":"805243102"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bodacc_company_events', {
"siren": "805243102"
});
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.