cnmv_annual_reports
Pack: cnmv-filings · Endpoint: https://gateway.pipeworx.io/cnmv-filings/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/cnmv_annual_reports for the schema, then POST the same URL with its arguments for the data.
List a Spanish issuer’s annual financial reports (Informes financieros anuales) from the CNMV official register: financial-year end, CNMV publication date, auditor, audit opinion, and links to the individual and consolidated reports and to the ESEF report package (ZIP/.xbri containing the iXBRL report and taxonomy files). Identify the issuer by nif, isin or company name. Covers every year the issuer has filed (back to the 2000s for long-listed issuers); ESEF packages exist from FY2020 onward.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
nif | string | no | Issuer NIF as CNMV records it, e.g. “A-28092583”. |
isin | string | no | Issuer share ISIN, e.g. “ES0178165017”. |
company | string | no | Issuer name, e.g. “Tecnicas Reunidas”. |
limit | number,string | no | Most recent N financial years to return (1-40). Default 5. |
Example call
Arguments
{
"nif": "A-28092583",
"limit": 2
}
curl
curl -X POST https://gateway.pipeworx.io/cnmv-filings/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"cnmv_annual_reports","arguments":{"nif":"A-28092583","limit":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('cnmv_annual_reports', {
"nif": "A-28092583",
"limit": 2
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cnmv-filings": {
"url": "https://gateway.pipeworx.io/cnmv-filings/mcp"
}
}
}
See Getting Started for client-specific install steps.