quiver_congress_trading

Pack: quiver · Endpoint: https://gateway.pipeworx.io/quiver/mcp

Recent US Congress stock trades — who in Congress bought/sold what, with amount ranges and disclosure dates. Pass a ticker to get the trade history for that company instead (“Congress trades for TSLA”). Example: quiver_congress_trading({ ticker: “NVDA”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
tickerstringnoOptional stock ticker to filter to one company, e.g. “NVDA”. Omit for the latest cross-market feed.
_apiKeystringyesQuiver Quantitative API key (get one at quiverquant.com; Hobbyist plan from $30/mo)

Example call

Arguments

{
  "ticker": "NVDA",
  "_apiKey": "your-quiver-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/quiver/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"quiver_congress_trading","arguments":{"ticker":"NVDA","_apiKey":"your-quiver-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('quiver_congress_trading', {
  "ticker": "NVDA",
  "_apiKey": "your-quiver-api-key"
});

More examples

{
  "_apiKey": "your-quiver-api-key"
}

Connect

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

{
  "mcpServers": {
    "quiver": {
      "url": "https://gateway.pipeworx.io/quiver/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026