get_market_brief
Retrieve a daily AI-generated strategic market brief with narrative analysis of key market movements, patterns, and opportunities.
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:121-126 (registration)Tool registration (name, description, and empty inputSchema) for 'get_market_brief' in the ListToolsRequestSchema handler.
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: {} }, }, - src/index.ts:245-252 (handler)Handler for 'get_market_brief' tool: calls GET /market/brief API, extracts the brief object, and returns its date, narrative text, and mentioned companies.
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(", ")}` ); }