macro_snapshot
Pack: macro-snapshot · Endpoint: https://gateway.pipeworx.io/macro-snapshot/mcp
A country’s current headline economic indicators in one call — inflation, growth, rates.
Tool description as the model sees it
Get the current state of the US/global economy in ONE call — Fed funds rate, the full Treasury yield curve (3mo/2y/10y + 10y-2y and 10y-3m spreads with inversion flag), CPI & core CPI year-over-year, unemployment, nonfarm payrolls (+1mo change), real GDP growth, S&P 500, VIX, the broad USD index, and BTC. Composes 16 FRED series (Federal Reserve economic data) with live crypto, runs them in parallel, and returns a structured dashboard plus human-readable callouts (curve inversion, inflation vs the Fed’s 2% target, elevated VIX). Use this instead of fetching ten indicators separately. No arguments. THE COMPONENTS DO NOT SHARE A DATE — daily series (rates, markets) sit beside quarterly GDP that can be 100+ days older; each group carries its own as_of map and freshness states the full span and oldest component — read those before comparing fields against the top-level as_of, which is only the newest daily series.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/macro-snapshot/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"macro_snapshot","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('macro_snapshot', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"macro-snapshot": {
"url": "https://gateway.pipeworx.io/macro-snapshot/mcp"
}
}
}
See Getting Started for client-specific install steps.