Skip to main content
Glama
ivossos
by ivossos

generate_investment_memo

Create a 2-page investment memo with financial analysis for a company using its ticker symbol, generating a Word document with consolidated financial data.

Instructions

Generate a 2-page investment memo (Word doc) with financial analysis / Gerar memorando de investimento

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tickerYesCompany ticker symbol (e.g., 'TECH')

Implementation Reference

  • The main asynchronous handler function that executes the generate_investment_memo tool. Currently a placeholder returning mock data.
    async def generate_investment_memo(ticker: str) -> dict[str, Any]: """Generate a 2-page investment memo (Word doc) with financial analysis. Gerar memorando de investimento (Word) com analise financeira. Args: ticker: Company ticker symbol (e.g., 'TECH'). Returns: dict: Path to generated memo file and summary. """ # Placeholder - full implementation will use: # - KenshoMockService for financial data # - FinancialAnalyzer for analysis # - MemoGenerator for Word document creation return { "status": "success", "data": { "ticker": ticker, "message": "Investment memo generation requires full implementation", "note": "This will generate a Word document with financial analysis" } }
  • The tool definition including name, description, and input schema for validation.
    TOOL_DEFINITIONS = [ { "name": "generate_investment_memo", "description": "Generate a 2-page investment memo (Word doc) with financial analysis / Gerar memorando de investimento", "inputSchema": { "type": "object", "properties": { "ticker": { "type": "string", "description": "Company ticker symbol (e.g., 'TECH')", }, }, "required": ["ticker"], }, }, ]
  • Registration of the tool handler in the central TOOL_HANDLERS dictionary.
    # Memo "generate_investment_memo": memo.generate_investment_memo, }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ivossos/fccs-mcp-ag-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server