Cnmv Filings

liveLegal

Spain CNMV Regulated Filings MCP — keyless, same-day-fresh.

3tools
0msauth
free tier50 calls/day

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

No parameters required.

Try it
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

No parameters required.

Try it
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

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/cnmv-filings/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("cnmv_search_filings", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("spain cnmv regulated filings mcp — keyless, same-day-fresh");