dtcc_swaps_recent

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_recent for the schema, then POST the same URL with its arguments for the data.

Most-recently disseminated swap transactions from DTCC’s public, CFTC-Part-43-mandated real-time price dissemination feed (pddata.dtcc.com), live. Covers CFTC-regulated swaps (commodity CO, credit CR, equity EQ, FX, interest-rate IR), SEC-regulated security-based swaps (credit CR, equity EQ, interest-rate IR), and Canadian-regulator swaps (credit CR, equity EQ, interest-rate IR). Each record carries notional amount/currency, fixed/floating rate terms, execution/effective/expiration dates, product identifiers, and an actionType (NEWT=new trade, CORR=correction, EROR=error/cancel, MODI=modification, TERM=termination) — corrections and cancellations of an earlier trade appear as NEW records with that actionType, not as edits, so this is an append-only event log, not a snapshot.

Parameters

NameTypeRequiredDescription
regulatorstringyesWhich regulator the swap is reported under: CFTC (commodity/credit/equity/FX/rates), SEC (security-based swaps), or CA (Canadian regulators).
asset_classstringyesAsset class: CR=credit, EQ=equity, IR=interest-rate, FX=foreign exchange (CFTC only), CO=commodity (CFTC only).
limitnumbernoMax trades to return, most-recent first (default 20, max ~100 — the feed itself only retains the most recent ~100 per bucket).

Example call

Arguments

{
  "regulator": "CFTC",
  "asset_class": "IR",
  "limit": 3
}

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_recent","arguments":{"regulator":"CFTC","asset_class":"IR","limit":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('dtcc_swaps_recent', {
  "regulator": "CFTC",
  "asset_class": "IR",
  "limit": 3
});

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