Federal Reserve (FOMC)
live FinanceEconomicsGovernmentFederal Reserve communications from federalreserve.gov: the FOMC meeting calendar, each policy statement with the rate decision, vote and a sentence-level redline against the prior statement, meeting minutes by section, Board speeches and testimony, and the Beige Book by district.
Tools
fomc_calendar FOMC meeting calendar from the Federal Reserve Board: every scheduled and unscheduled meeting of a year with dates, whether it carries a Summary of Economic Projections (SEP), statement, press-confere
No parameters required.
Try it
fomc_statement FOMC post-meeting policy statement from the Federal Reserve with the rate decision parsed (target range, hold/cut/hike, basis points), the vote tally with named dissenters and what they preferred, the
No parameters required.
Try it
fomc_minutes Minutes of an FOMC meeting from the Federal Reserve Board: full text split into its sections (Developments in Financial Markets, Staff Review of the Economic Situation, Participants' Views, Committee
No parameters required.
Try it
fed_speeches Recent speeches and congressional testimony by Federal Reserve Board governors and the Chair, from the Board's speeches and testimony feeds: title, speaker with official title, date, venue, URL and th
No parameters required.
Try it
beige_book Beige Book from the Federal Reserve — the eight-times-a-year summary of current economic conditions gathered by the 12 Federal Reserve Districts: the national summary or one district's report (Boston,
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/fed-comms/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/fed-comms/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"fomc_calendar","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("fomc_calendar", {}); // Or ask in plain English:
const answer = await px.ask("federal reserve communications from federalreserve");