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

NameTypeRequiredDescription
regulatorstringyesWhich regulator the swap is reported under.
asset_classstringyesAsset class: CR=credit, EQ=equity, IR=interest-rate, FX (CFTC only), CO=commodity (CFTC only).
granularitystringno’intraday’ for ~5-minute rolling slice files (default), ‘eod’ for one file per prior trading day.
limitnumbernoMax 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.

Regenerated from source · build September 23, 2026