fomc_minutes
Pack: fed-comms · Endpoint: https://gateway.pipeworx.io/fed-comms/mcp
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 Policy Actions, votes, attendance) with an optional section filter. Answers “what did the FOMC minutes say about inflation”, “summarize participants’ views in the latest Fed minutes”, “who attended the June FOMC meeting”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | no | Meeting date as YYYY-MM-DD or YYYY-MM (e.g. “2026-06”). Default: the most recently released minutes. |
section | string | no | Case-insensitive substring of a section heading, e.g. “Participants’ Views”, “Policy Actions”, “Staff Economic Outlook”. Returns only that section’s text. |
Example call
Arguments
{
"section": "Policy Actions"
}
curl
curl -X POST https://gateway.pipeworx.io/fed-comms/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fomc_minutes","arguments":{"section":"Policy Actions"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fomc_minutes', {
"section": "Policy Actions"
});
More examples
{
"date": "2026-06"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fed-comms": {
"url": "https://gateway.pipeworx.io/fed-comms/mcp"
}
}
}
See Getting Started for client-specific install steps.