oneinfo_get_disclosure

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

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

Fetch a single 1INFO disclosure by its protocolCode id and publication date, as returned by oneinfo_search_disclosures. This source has no by-id-only lookup endpoint, only by-day listings, so both id and date are required. Returns the shaped record — company, title, category, timestamp, and the document URL (with the .pdf-suffix / fiscal-year gotchas already handled).

Parameters

NameTypeRequiredDescription
idstringyesprotocolCode, e.g. “171904_oneinfo”, from an oneinfo_search_disclosures result (its bare id, without any .pdf/.zip suffix — this tool adds the right one).
datestringyesThe disclosure’s publication date (YYYY-MM-DD, Europe/Rome), from the same search result (published_at_local’s date part).

Example call

Arguments

{
  "id": "171904_oneinfo",
  "date": "2026-09-22"
}

curl

curl -X POST https://gateway.pipeworx.io/oneinfo-storage/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"oneinfo_get_disclosure","arguments":{"id":"171904_oneinfo","date":"2026-09-22"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('oneinfo_get_disclosure', {
  "id": "171904_oneinfo",
  "date": "2026-09-22"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 24, 2026