market_snapshot

Pack: market-recap · Endpoint: https://gateway.pipeworx.io/market-recap/mcp

Live market snapshot for a “what happened in markets” recap — major indices, US Treasury yields, FX, commodities, and crypto with current price and daily % change, grouped by region. Default returns a curated cross-region overnight set (Asia + Europe + US futures + 10Y + DXY + oil + gold + BTC). Use region to drill into one group. Returns structured numbers for you to synthesize the narrative. Keyless (Yahoo Finance).

Parameters

NameTypeRequiredDescription
regionstringnoWhich slice to return. “headline” (default) = curated cross-region overnight set. “all” = every group. Or one of: asia, europe, us, rates, fx, commodities, crypto.

Example call

Arguments

{
  "region": "headline"
}

curl

curl -X POST https://gateway.pipeworx.io/market-recap/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"market_snapshot","arguments":{"region":"headline"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('market_snapshot', {
  "region": "headline"
});

More examples

{
  "region": "all"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "market-recap": {
      "url": "https://gateway.pipeworx.io/market-recap/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026