beige_book

Pack: fed-comms · Endpoint: https://gateway.pipeworx.io/fed-comms/mcp

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, New York, Philadelphia, Cleveland, Richmond, Atlanta, Chicago, St. Louis, Minneapolis, Kansas City, Dallas, San Francisco) split into its sections (Overall Economic Activity, Labor Markets, Prices, and the district’s industry sections). Answers “what does the latest Beige Book say about the Dallas district”, “Beige Book labor market conditions”, “regional economic conditions per the Fed”.

Parameters

NameTypeRequiredDescription
editionstringnoEdition as YYYY-MM or YYYYMM (e.g. “2026-07”). Default: the latest published edition.
districtstringnoDistrict name, city, or number 1–12 (e.g. “Dallas”, “Kansas City”, “11”). Default: the national summary.

Example call

Arguments

{
  "district": "Dallas"
}

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":"beige_book","arguments":{"district":"Dallas"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('beige_book', {
  "district": "Dallas"
});

More examples

{
  "edition": "2026-05",
  "district": "Kansas City"
}

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.

Regenerated from source · build August 29, 2026