Description
Investor-agent is an MCP server that provides financial analysis tools for Large Language Models, leveraging real-time market data through yfinance and CNN's Fear & Greed Index. Developed by Ferdous, it offers tools for retrieving detailed ticker reports, options data, price histories, financial statements, institutional ownership, and technical indicators (with optional TA-Lib support). The server implements intelligent caching to reduce redundant API calls and includes rate limiting to prevent overloading external services, making it ideal for investment research, portfolio analysis, and market sentiment evaluation when paired with a trading platform like tasty-agent.
Installation
npx -y investor-agent npm install investor-agent git clone https://github.com/ferdousbhai/investor-agent Claude Desktop Configuration
Add this configuration to your Claude Desktop config file to enable this MCP server:
Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json
Config file location: %APPDATA%\Claude\claude_desktop_config.json
Config file location: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"investor-agent-financial-analysis": {
"command": "npx",
"args": [
"-y",
"investor-agent"
]
}
}
}