bodacc_get_notice
Pack: bodacc · Endpoint: https://gateway.pipeworx.io/bodacc/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/bodacc_get_notice for the schema, then POST the same URL with its arguments for the data.
Fetch a single BODACC notice by its id (e.g. “A202601824309”, visible in bodacc_search / bodacc_company_events / bodacc_insolvency_feed results). Returns the full shaped notice including the parsed judgment/act/deregistration/persons detail.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | BODACC notice id, e.g. “A202601824309”. |
Example call
Arguments
{
"id": "A202601824309"
}
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_get_notice","arguments":{"id":"A202601824309"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bodacc_get_notice', {
"id": "A202601824309"
});
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.