emarket_search_disclosures

Pack: emarket-storage · Endpoint: https://gateway.pipeworx.io/emarket-storage/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/emarket_search_disclosures for the schema, then POST the same URL with its arguments for the data.

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 ISSUERS COVERED HERE — this source is updated same-day, unlike the community ESEF index which runs months behind. Identify the issuer with company (free-text name, resolved against eMarket’s own ~480-issuer list) or azienda_id (Teleborsa’s internal numeric id, from a prior result) — there is no ISIN/LEI field on this source. date_to IS INCLUSIVE (the last day you want included) — this tool handles the underlying source’s own date_to being EXCLUSIVE by always querying one calendar day past it, so date_from=“2026-09-21”, date_to=“2026-09-22” correctly returns rows from BOTH the 21st and the 22nd; a single date_from with no date_to searches just that one day. COVERAGE: only issuers that disclose through eMarket Storage — a second Italian mechanism, 1INFO, covers a separate set of issuers (e.g. IREN, SOMEC) and is NOT included; an unmatched company name is reported as “not an eMarket Storage issuer”, not as an error. Category codes: ${CATEGORY_HINT}. Returns disclosure EVENTS (title, company, timestamp, PDF link) — NOT extracted XBRL facts.

Parameters

NameTypeRequiredDescription
companystringnoFree-text issuer name, e.g. “Saipem”, “amplifon”. Resolved against eMarket Storage’s own issuer picklist (name match, not a fulltext search). If it matches more than one issuer equally well, the response lists the candidates instead of guessing — retry with azienda_id.
azienda_idstring,numbernoTeleborsa’s internal issuer id, e.g. “1247” (Saipem). Use the value returned by a previous company search to skip name resolution.
categorystringnoEU Transparency Directive category code to filter by, e.g. “104” for Informazioni privilegiate. See tool description for the full code list. When set, every returned row is tagged with this category (the source does not expose a category on the row itself, only as a search filter — so category is null on unfiltered results).
marketstringnoExact market/segment name to filter by, e.g. “Euronext Milan”, “Euronext STAR Milan”, “MTA”. Must match eMarket Storage’s own market label exactly; omit if unsure.
cercastringnoFull-text search across disclosure titles and attachment contents.
date_fromstringnoOnly disclosures published on or after this date (YYYY-MM-DD, inclusive). If date_to is omitted, this tool searches just this one day.
date_tostringnoOnly disclosures published on or before this date (YYYY-MM-DD, INCLUSIVE — the last day you want included). The upstream source’s own date_to parameter is EXCLUSIVE of that day, so this tool always adds one calendar day internally before querying; the response echoes both your inclusive date_to and the exclusive bound actually sent upstream.
limitnumber,stringnoNumber of disclosures to return (1-${PAGE_SIZE}). Default 10. The underlying source pages in fixed blocks of ${PAGE_SIZE}; a limit/offset combination that crosses a page boundary returns only the remainder of that page — use has_more and increase offset by ${PAGE_SIZE} to page further.
offsetnumber,stringnoResult offset for pagination. Default 0.

Example call

Arguments

{
  "category": "104",
  "date_from": "2026-09-22",
  "date_to": "2026-09-24"
}

curl

curl -X POST https://gateway.pipeworx.io/emarket-storage/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"emarket_search_disclosures","arguments":{"category":"104","date_from":"2026-09-22","date_to":"2026-09-24"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('emarket_search_disclosures', {
  "category": "104",
  "date_from": "2026-09-22",
  "date_to": "2026-09-24"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "emarket-storage": {
      "url": "https://gateway.pipeworx.io/emarket-storage/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 23, 2026