get_market_brief
Generate an AI-powered strategic intelligence brief analyzing key market movements, patterns, and opportunities for informed decision-making.
Instructions
Get today's AI-generated strategic intelligence brief with narrative analysis of the most important market movements, patterns, and opportunities.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:245-252 (handler)The get_market_brief tool handler, which fetches data from the /market/brief endpoint and formats it into a text result.
case "get_market_brief": { const data = await apiRequest("GET", "/market/brief"); const brief = data.brief; return textResult( `Strategic Intelligence Brief (${brief.date}):\n\n${brief.text}\n\n` + `Companies mentioned: ${(brief.companies || []).join(", ")}` ); } - src/index.ts:120-126 (registration)Registration of the get_market_brief tool in the MCP server list.
{ name: "get_market_brief", description: "Get today's AI-generated strategic intelligence brief with narrative analysis " + "of the most important market movements, patterns, and opportunities.", inputSchema: { type: "object" as const, properties: {} }, },