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”. Pass a dataset key from finra_fixed_income_datasets (e.g. “treasury_daily”, “corporate_sentiment”, “agency_mbs_activity”) and optionally a date range. Returns FINRA’s published aggregate rows. 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 August 27, 2026