finra_fixed_income_series

Pack: finra-fixed-income · Endpoint: https://gateway.pipeworx.io/finra-fixed-income/mcp

Get a FINRA fixed income aggregate series — US bond market trading activity as reported to FINRA. Answers “how much Treasury volume traded”, “corporate bond market sentiment”, “agency MBS trading activity”, “is bond market breadth positive”, “what is CMBS pricing by deal vintage”. Pass a dataset key from finra_fixed_income_datasets (e.g. “treasury_daily”, “corporate_sentiment”, “agency_mbs_activity”, “capped_volume_corporate”) and optionally a date range. With no date range, returns FINRA’s latest published period for that series; with start_date or end_date, returns that window. This is MARKET-WIDE aggregate data, not individual trades — FINRA licenses transaction-level TRACE data separately and it is not available here. Example: finra_fixed_income_series({ dataset: “treasury_daily”, limit: 10 }); finra_fixed_income_series({ dataset: “corporate_sentiment”, start_date: “2026-07-01” }).

Parameters

NameTypeRequiredDescription
datasetstringyesDataset key from finra_fixed_income_datasets, e.g. “treasury_daily”
start_datestringnoEarliest date, YYYY-MM-DD (optional)
end_datestringnoLatest date, YYYY-MM-DD (optional)
limitnumbernoMax rows (default 25, max 500)

Example call

Arguments

{
  "dataset": "treasury_daily",
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/finra-fixed-income/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"finra_fixed_income_series","arguments":{"dataset":"treasury_daily","limit":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('finra_fixed_income_series', {
  "dataset": "treasury_daily",
  "limit": 10
});

More examples

{
  "dataset": "corporate_sentiment",
  "limit": 5
}

Connect

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

{
  "mcpServers": {
    "finra-fixed-income": {
      "url": "https://gateway.pipeworx.io/finra-fixed-income/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 10, 2026