Emarket Storage

liveLegal

Italian regulated disclosures direct from eMarket Storage (Teleborsa) — keyless, same-day-fresh.

2tools
0msauth
free tier50 calls/day

Tools

emarket_search_disclosures

Search Italian regulated company disclosures from eMarket Storage (Teleborsa), one of Italy's two EU Transparency Directive Officially Appointed Mechanisms. PREFER OVER esef_filing_search FOR ITALIAN

No parameters required.

Try it
emarket_get_disclosure

Fetch a single eMarket Storage disclosure by its Teleborsa protocollo id and publication date, as returned by emarket_search_disclosures. This source has no by-id lookup endpoint, only by-day listings

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/emarket-storage/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/emarket-storage/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"emarket_search_disclosures","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("emarket_search_disclosures", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("italian regulated disclosures direct from emarket storage (teleborsa) — keyless, same-day-fresh");