Cnmv Filings
liveLegalSpain CNMV Regulated Filings MCP — keyless, same-day-fresh.
Tools
cnmv_search_filingsSearch 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
No parameters required.
Try it
cnmv_annual_reportsList 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
No parameters required.
Try it
cnmv_find_issuerResolve 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
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/cnmv-filings/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/cnmv-filings/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"cnmv_search_filings","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("cnmv_search_filings", {});// Or ask in plain English:
const answer = await px.ask("spain cnmv regulated filings mcp — keyless, same-day-fresh");