amf_get_filing
Pack: amf-filings · Endpoint: https://gateway.pipeworx.io/amf-filings/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/amf_get_filing for the schema, then POST the same URL with its arguments for the data.
Fetch a single French AMF-regulated disclosure by its Info-financière record id (uin_idt_uin, e.g. “008731_20260923”) from amf_search_filings results. Returns the full shaped record — title, issuer, ISIN/LEI, publication timestamp, and the document (PDF) URL.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Info-financière record id (uin_idt_uin), e.g. “008731_20260923”. |
Example call
Arguments
{
"id": "008731_20260923"
}
curl
curl -X POST https://gateway.pipeworx.io/amf-filings/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"amf_get_filing","arguments":{"id":"008731_20260923"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('amf_get_filing', {
"id": "008731_20260923"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"amf-filings": {
"url": "https://gateway.pipeworx.io/amf-filings/mcp"
}
}
}
See Getting Started for client-specific install steps.