dtcc_swaps_dissemination_files
Pack: dtcc-swaps · Endpoint: https://gateway.pipeworx.io/dtcc-swaps/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/dtcc_swaps_dissemination_files for the schema, then POST the same URL with its arguments for the data.
Index of DTCC’s public swap dissemination data files for a regulator/asset-class: either 5-minute intraday ‘slice’ files (rolling, current trading activity) or end-of-day ‘cumulative’ files (one per prior day), each with a row count and a public download URL for the full CSV-in-zip. Use this to find bulk files covering more history than dtcc_swaps_recent’s rolling ~100-row live window returns; it lists the files, it does not download/unzip them.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
regulator | string | yes | Which regulator the swap is reported under. |
asset_class | string | yes | Asset class: CR=credit, EQ=equity, IR=interest-rate, FX (CFTC only), CO=commodity (CFTC only). |
granularity | string | no | ’intraday’ for ~5-minute rolling slice files (default), ‘eod’ for one file per prior trading day. |
limit | number | no | Max file entries to return, most-recent first (default 20). |
Example call
Arguments
{
"regulator": "CFTC",
"asset_class": "CR",
"granularity": "intraday",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/dtcc-swaps/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dtcc_swaps_dissemination_files","arguments":{"regulator":"CFTC","asset_class":"CR","granularity":"intraday","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dtcc_swaps_dissemination_files', {
"regulator": "CFTC",
"asset_class": "CR",
"granularity": "intraday",
"limit": 5
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dtcc-swaps": {
"url": "https://gateway.pipeworx.io/dtcc-swaps/mcp"
}
}
}
See Getting Started for client-specific install steps.