finance_market_overview
Access real-time global market data including major stock indices (S&P 500, NASDAQ, FTSE 100), commodities (Gold, Oil), and Treasury yields for financial analysis and decision-making.
Instructions
Get global market overview: S&P 500, Dow Jones, NASDAQ, FTSE 100, Nikkei 225, DAX, plus Gold, Silver, Oil, and Treasury yields. Costs $0.05 USDC per request via x402 on Base.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:241-244 (handler)The handler function for the finance_market_overview tool, which fetches market overview data from the finance API.
async () => { const data = await apiFetch(`${FINANCE_API}/api/v1/market/overview`); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] }; } - src/index.ts:232-240 (registration)Registration of the finance_market_overview tool in the MCP server.
server.registerTool( "finance_market_overview", { title: "Get Market Overview", description: `Get global market overview: S&P 500, Dow Jones, NASDAQ, FTSE 100, Nikkei 225, DAX, plus Gold, Silver, Oil, and Treasury yields. Costs $0.05 USDC per request via x402 on Base.`, inputSchema: {}, annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, },