emarket_get_disclosure
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_get_disclosure for the schema, then POST the same URL with its arguments for the data.
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, so both id and date are required. Returns the shaped record — company, title, category (if known), timestamp, and the document (PDF) URL.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Teleborsa protocollo id, e.g. “189482”, from an emarket_search_disclosures result. |
date | string | yes | The disclosure’s publication date (YYYY-MM-DD), from the same search result (published_at_local’s date part). |
Example call
Arguments
{
"id": "189482",
"date": "2026-09-23"
}
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_get_disclosure","arguments":{"id":"189482","date":"2026-09-23"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('emarket_get_disclosure', {
"id": "189482",
"date": "2026-09-23"
});
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.