Politician Trades
liveFinanceGovernmentMarketsStock trades disclosed by members of the US Congress — who bought or sold what, and when they filed it.
Tools
politician_recent_tradesStock trades disclosed by members of Congress under the STOCK Act, back to 2012.
No parameters required.
Try it
politician_top_moversWhich tickers attracted the most congressional trading activity in the last N days, aggregated across the top 35 most-active filers. Returns each ticker with trade count, distinct member count, purcha
No parameters required.
Try it
politician_member_activityDetail view for a single member of Congress (or executive-branch filer): full lifetime trade count, windowed activity, late-filing rate, avg days-to-file, estimated disclosed volume, and avg excess re
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/politician-trades/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/politician-trades/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"politician_recent_trades","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("politician_recent_trades", {});// Or ask in plain English:
const answer = await px.ask("stock trades disclosed by members of the us congress — who bought or sold what, and when they filed it");