@pipeworx/cnmv-filings
Connect: https://gateway.pipeworx.io/cnmv-filings/mcp · Install: one-click buttons
No MCP client? Skip the connection: POST https://gateway.pipeworx.io/v1/tools/search_packs {"query":"..."} to find a tool below, GET /v1/tools/<name> for its schema, POST the same URL with arguments for the data — see For AI agents.
Tools: 3
Spanish listed-company regulated disclosures and annual financial reports from the CNMV (Comisión Nacional del Mercado de Valores) public registers, including the ESEF report packages. Filings show up within minutes of registration, not months later as in the community ESEF index.
Tools
cnmv_search_filings(date_from?, date_to?, nif?, isin?, company?, feed?, limit?)searches disclosures by publication window (Madrid calendar days, inclusive, default the last 7 days). You can narrow it to one issuer. It covers “Otra información relevante” (results, annual and half-year report notices, buybacks, governance) and “Información privilegiada” (inside information), newest first. Each row has the company, NIF, category, title, registration number, a Madrid-timepublished_atand the document URL.total_countis exact for the window.cnmv_annual_reports(nif? | isin? | company?, limit?)returns the issuer’s annual financial report register: financial-year end, publication date, auditor, audit opinion, the individual and consolidated report links, and the ESEF report package URL (a ZIP, sometimes named.xbri, holding the iXBRL report and taxonomy files, FY2020 onward).cnmv_find_issuer(company? | isin?)resolves a name or a Spanish ISIN to the NIF that the CNMV registers use.
Why this pack exists
esef-filings proxies filings.xbrl.org. On 2026-09-23 that index held 113
Spanish filings for FY2024 and 1 for FY2025. The CNMV is the primary source
the index aggregates from. Measured the same day: Técnicas Reunidas’ FY2025
annual financial report was registered 2026-02-26 21:25 Madrid time, and its
ESEF ZIP (5.5 MB, LEI 213800JEZBUPZKWJGF49) downloads from the URL
cnmv_annual_reports returns. The newest OIR row in the register was 19:48 the
same day it was queried.
⚠️ Things a caller must know
- This is a document index, not an XBRL-facts API. Nothing here parses
the ESEF package.
esef_package_urlis there so a downstream pipeline can ingest it. - The issuer key is the Spanish NIF (e.g.
A-28092583, sometimes written without the dash, e.g.A39000013). ISINs and LEIs are not the register’s key.isinis resolved through the CNMV ISIN register, which lists only securities issued in Spain. A foreign issuer listed in Madrid has anN…NIF and no Spanish ISIN, so usecompanyorniffor those. - Name search can match several entities. “banco santander” matches six,
including foreign-currency listings with codes like
BRL-000356. The pack picks the closest domestic name and lists the rest underissuer_candidates. Check them if the name is ambiguous. - Timestamps are Madrid local time on the source.
published_atcarries the +01:00/+02:00 offset.published_localis the raw string.
Auth
Keyless. No account, no API key. Everything is public on cnmv.es.
Data sources
- https://www.cnmv.es/portal/otra-informacion-relevante/resultado-oir.aspx?fechaDesde=DD/MM/YYYY&fechaHasta=DD/MM/YYYY[&nif=…][&page=N]
is the “Otra información relevante” register, 10 rows per page, with a
0-based
page. - https://www.cnmv.es/portal/informacion-privilegiada/resultado-ip.aspx is the “Información privilegiada” register and takes the same parameters.
- https://www.cnmv.es/portal/consultas/ifa/listadoifa.aspx?id=0&nif=… is the annual financial report register for one issuer.
- https://www.cnmv.es/portal/Consultas/BusquedaPorEntidad is the entity name search (an ASP.NET postback).
- https://www.cnmv.es/portal/ancv/isin?isin=… is the ISIN register.
- https://www.cnmv.es/webservices/verdocumento/ver?t=…|e=… is the document download handler (PDF / ZIP). These URLs stayed stable across page loads when tested.
Gotchas
403witherrorcode=CVFEis the portal’s not-found page, not a block. Its text reads “No ha sido posible completar su consulta. Verifique la ruta.” A made-up path (/portal/nonexistent-xyz.aspx) returns the same response. The oldHR/ComunicacionesRR.aspxandConsultas/IFA/InformesFinancierosAnuales.aspxpaths return it because they do not exist. The pre-2020 “Hechos relevantes” feed was split into OIR and IP on 2020-02-08. The pack turns this response into anot_found:error.listadoifa.aspxwithoutnifreturns400 errorcode=HE.- The
.aspxURLs 301 to extensionless ones, so follow redirects. - The OIR/IP result pages report “Página 1 de N” but no row count. The pack
computes the exact total as
(N-1)*10 + rows on the last page, which costs one extra request when the window spans more pages thanlimitneeds. - The “Últimos días” summary page (
Consultas/BusquedaUltimosDias.aspx) counts issuers per category per day, not filings. Its numbers are lower thantotal_countfor the same day, and that is expected. - Entity search needs WebForms state. POST back
__VIEWSTATE,__VIEWSTATEGENERATORand__EVENTVALIDATION, form-encoded, so the$in control names goes out as%24(the working encoding here; a literal$was not tested on CNMV, but on other WebForms sites it silently re-renders the form with HTTP 200). A unique match redirects to the entity page. Several matches render aselectlist of NIF → name.
Tools
- cnmv_search_filings — Search Spanish listed-company regulated disclosures filed with the CNMV (Comisión Nacional del Mercado de Valores), the Spanish securities regulator: “Otra información relevante” (results, annual and
- cnmv_annual_reports — 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 ind
- cnmv_find_issuer — Resolve a Spanish-market issuer name or ISIN to the NIF the CNMV registers use, via the CNMV entity search and ISIN register. Returns the matching entities (name + NIF) and the CNMV entity page URL. U
Tools
cnmv_annual_reports— 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 indcnmv_find_issuer— Resolve a Spanish-market issuer name or ISIN to the NIF the CNMV registers use, via the CNMV entity search and ISIN register. Returns the matching entities (name + NIF) and the CNMV entity page URL. Ucnmv_search_filings— Search Spanish listed-company regulated disclosures filed with the CNMV (Comisión Nacional del Mercado de Valores), the Spanish securities regulator: Otra información relevante (results, annual and ha