Oneinfo Storage
liveLegalItalian regulated disclosures direct from 1INFO — keyless, same-day-fresh.
2tools
0msauth
free tier50 calls/day
Tools
oneinfo_search_disclosuresSearch Italian regulated company disclosures from 1INFO, one of Italy's two EU Transparency Directive Officially Appointed Mechanisms (the other is eMarket Storage — use emarket-storage's emarket_sear
No parameters required.
Try it
Response
oneinfo_get_disclosureFetch 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
No parameters required.
Try it
Response
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/oneinfo-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/oneinfo-storage/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"oneinfo_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("oneinfo_search_disclosures", {});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("italian regulated disclosures direct from 1info — keyless, same-day-fresh");