Installation
Content Details
Alternatives
Installation
{
"mcpServers": {
"maverick-mcp": {
"command": "npx",
"args": ["-y", "mcp-remote", "http://localhost:8003/sse/"]
}
}
}
{
"mcpServers": {
"maverick-mcp": {
"command": "uv",
"args": [
"run",
"python",
"-m",
"maverick_mcp.api.server",
"--transport",
"stdio"
],
"cwd": "/path/to/maverick-mcp"
}
}
}
{
"mcpServers": {
"maverick-mcp": {
"url": "http://localhost:8003/sse/"
}
}
}
{
"mcpServers": {
"maverick-mcp": {
"command": "npx",
"args": ["-y", "mcp-remote", "http://localhost:8003/mcp/"]
}
}
}
{
"mcpServers": {
"maverick-mcp": {
"serverUrl": "http://localhost:8003/sse/"
}
}
}๐ MaverickMCP - Personal Stock Analysis MCP Server
MaverickMCP is a personal-use FastMCP 2.0 server. It offers professional-grade financial data analysis, technical indicators, and portfolio optimization tools directly within your Claude Desktop interface. Designed for individual traders and investors, it provides comprehensive stock analysis capabilities without the hassle of authentication or billing.
The server comes pre - loaded with all 520 S&P 500 stocks and offers advanced screening recommendations across multiple strategies. It runs locally with HTTP/SSE/STDIO transport options for seamless integration with Claude Desktop and other MCP clients.
๐ Quick Start
Prerequisites
- Python 3.12+: Core runtime environment
- uv: Modern Python package manager (recommended)
- TA - Lib: Technical analysis library for advanced indicators
- Redis (optional, for enhanced caching)
- PostgreSQL or SQLite (optional, for data persistence)
Installing TA - Lib
TA - Lib is required for technical analysis calculations.
macOS and Linux (Homebrew):
brew install ta - lib
Windows (Multiple Options):
Option 1: Conda/Anaconda (Recommended - Easiest)
conda install -c conda - forge ta - lib
Option 2: Pre - compiled Wheels
- Download the appropriate wheel for your Python version from:
- [cgohlke/talib - build releases](https://github.com/cgohlke/talib - build/releases)
- Choose the file matching your Python version (e.g.,
TA_Lib-0.4.28-cp312-cp312-win_amd64.whlfor Python 3.12 64 - bit)
- Install using pip:
pip install path/to/downloaded/TA_Lib-X.X.X-cpXXX-cpXXX-win_amd64.whl
Option 3: Alternative Pre - compiled Package
pip install TA - Lib - Precompiled
Option 4: Build from Source (Advanced) If other methods fail, you can build from source:
- Install Microsoft C++ Build Tools
- Download and extract ta - lib C library to
C:\ta - lib - Build using Visual Studio tools
- Run
pip install ta - lib
Verification: Test your installation:
python -c "import talib; print(talib.__version__)"
Installing uv (Recommended)
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
# Alternative: via pip
pip install uv
Installation
Option 1: Using uv (Recommended - Fastest)
# Clone the repository
git clone https://github.com/wshobson/maverick - mcp.git
cd maverick - mcp
# Install dependencies and create virtual environment in one command
uv sync
# Copy environment template
cp.env.example.env
# Add your Tiingo API key (free at tiingo.com)
Option 2: Using pip (Traditional)
# Clone the repository
git clone https://github.com/wshobson/maverick - mcp.git
cd maverick - mcp
# Create virtual environment and install
python -m venv.venv
source.venv/bin/activate # On Windows:.venv\Scripts\activate
pip install -e.
# Copy environment template
cp.env.example.env
# Add your Tiingo API key (free at tiingo.com)
Start the Server
# One command to start everything (includes S&P 500 data seeding on first run)
make dev
# The server is now running with:
# - HTTP endpoint: http://localhost:8003/mcp/
# - SSE endpoint: http://localhost:8003/sse/
# - 520 S&P 500 stocks pre - loaded with screening data
Connect to Claude Desktop
Recommended: SSE Connection (Stable and Reliable) This configuration provides stable tool registration and prevents tools from disappearing:
{
"mcpServers": {
"maverick - mcp": {
"command": "npx",
"args": ["-y", "mcp - remote", "http://localhost:8003/sse/"]
}
}
}
โ ๏ธ Important Note
Note the trailing slash in
/sse/- this is REQUIRED to prevent redirect issues!
Config File Location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Why This Configuration Works Best:
- Stable tool registration - tools don't disappear after initial connection
- Reliable connection management through SSE transport
- Proper session persistence for long - running analysis tasks
- All 29+ financial tools available consistently
Alternative: Direct STDIO Connection (Development Only)
{
"mcpServers": {
"maverick - mcp": {
"command": "uv",
"args": [
"run",
"python",
"-m",
"maverick_mcp.api.server",
"--transport",
"stdio"
],
"cwd": "/path/to/maverick - mcp"
}
}
}
โ ๏ธ Important Note
Always restart Claude Desktop after making configuration changes. The SSE configuration via mcp - remote has been tested and confirmed to provide stable, persistent tool access without connection drops.
That's it! MaverickMCP tools will now be available in your Claude Desktop interface.
Claude Desktop (Most Popular) - Recommended Configuration
Config Location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Cursor IDE - STDIO and SSE
Option 1: STDIO (via mcp - remote):
{
"mcpServers": {
"maverick - mcp": {
"command": "npx",
"args": ["-y", "mcp - remote", "http://localhost:8003/sse/"]
}
}
}
Option 2: Direct SSE:
{
"mcpServers": {
"maverick - mcp": {
"url": "http://localhost:8003/sse/"
}
}
}
Config Location: Cursor โ Settings โ MCP Servers
Claude Code CLI - All Transports
HTTP Transport (Recommended):
claude mcp add --transport http maverick - mcp http://localhost:8003/mcp/
SSE Transport (Alternative):
claude mcp add --transport sse maverick - mcp http://localhost:8003/sse/
STDIO Transport (Development):
claude mcp add maverick - mcp uv run python -m maverick_mcp.api.server --transport stdio
Windsurf IDE - STDIO and SSE
Option 1: STDIO (via mcp - remote):
{
"mcpServers": {
"maverick - mcp": {
"command": "npx",
"args": ["-y", "mcp - remote", "http://localhost:8003/mcp/"]
}
}
}
Option 2: Direct SSE:
{
"mcpServers": {
"maverick - mcp": {
"serverUrl": "http://localhost:8003/sse/"
}
}
}
Config Location: Windsurf โ Settings โ Advanced Settings โ MCP Servers
Why mcp - remote is Needed
The mcp - remote tool bridges the gap between STDIO - only clients (like Claude Desktop) and HTTP/SSE servers. Without it, these clients cannot connect to remote MCP servers:
- Without mcp - remote: Client tries STDIO โ Server expects HTTP โ Connection fails
- With mcp - remote: Client uses STDIO โ mcp - remote converts to HTTP โ Server receives HTTP โ Success
โจ Features
- Pre - seeded Database: 520 S&P 500 stocks with comprehensive screening recommendations
- Advanced Backtesting: VectorBT - powered engine with 15+ built - in strategies and ML algorithms
- Fast Development: Comprehensive Makefile, smart error handling, hot reload, and parallel processing
- Stock Data Access: Historical and real - time stock data with intelligent caching
- Technical Analysis: 20+ indicators including SMA, EMA, RSI, MACD, Bollinger Bands, and more
- Stock Screening: Multiple strategies (Maverick Bullish/Bearish, Trending Breakouts) with parallel processing
- Portfolio Tools: Correlation analysis, returns calculation, and optimization
- Market Data: Sector performance, market movers, and earnings information
- Smart Caching: Redis - powered performance with automatic fallback to in - memory storage
- Database Support: SQLAlchemy integration with PostgreSQL/SQLite (defaults to SQLite)
- Multi - Transport Support: HTTP, SSE, and STDIO transports for all MCP clients
๐ฆ Installation
The installation steps are detailed in the "Quick Start" section above.
๐ป Usage Examples
Basic Usage
Backtesting Example
Once connected to Claude Desktop, you can use natural language to run backtests:
"Run a backtest on AAPL using the momentum strategy for the last 6 months"
"Compare the performance of mean reversion vs trend following strategies on SPY"
"Optimize the RSI strategy parameters for TSLA with walk - forward analysis"
"Show me the Sharpe ratio and maximum drawdown for a portfolio of tech stocks using the adaptive ML strategy"
"Generate a detailed backtest report for the ensemble strategy on the S&P 500 sectors"
Technical Analysis Example
"Show me the RSI and MACD analysis for NVDA"
"Identify support and resistance levels for MSFT"
"Get full technical analysis for the top 5 momentum stocks"
Portfolio Management Example (NEW)
"Add 10 shares of AAPL I bought at $150.50"
"Show me my portfolio with current prices"
"Compare my portfolio holdings" # No tickers needed!
"Analyze correlation in my portfolio" # Auto - detects your positions
"Remove 5 shares of MSFT"
Portfolio Optimization Example
"Optimize a portfolio of AAPL, GOOGL, MSFT, and AMZN for maximum Sharpe ratio"
"Calculate the correlation matrix for my tech portfolio"
"Analyze the risk - adjusted returns for energy sector stocks"
Advanced Usage
The advanced usage scenarios are demonstrated through the various tools and commands provided in the "Available Tools" and "Development Commands" sections.
๐ Documentation
Available Tools
MaverickMCP provides 39+ financial analysis tools organized into focused categories, including advanced AI - powered research agents:
Stock Data Tools
fetch_stock_data- Get historical stock data with intelligent cachingfetch_stock_data_batch- Fetch data for multiple tickers simultaneouslyget_news_sentiment- Analyze news sentiment for any tickerclear_cache/get_cache_info- Cache management utilities
Technical Analysis Tools
get_rsi_analysis- RSI calculation with buy/sell signalsget_macd_analysis- MACD analysis with trend identificationget_support_resistance- Identify key price levelsget_full_technical_analysis- Comprehensive technical analysisget_stock_chart_analysis- Visual chart generation
Portfolio Management Tools (NEW) - Personal Portfolio Tracking
portfolio_add_position- Add or update positions with automatic cost basis averagingportfolio_get_my_portfolio- View portfolio with live P&L calculationsportfolio_remove_position- Remove partial or full positionsportfolio_clear_portfolio- Clear all positions with safety confirmation
Portfolio Features:
- Persistent Storage: Track your actual holdings with cost basis
- Automatic Averaging: Cost basis updates automatically on repeat purchases
- Live P&L: Real - time unrealized gains/losses on all positions
- Portfolio Resource:
portfolio://my - holdingsprovides AI context automatically - Multi - Portfolio Support: Track multiple portfolios (IRA, 401k, taxable, etc.)
- Fractional Shares: Full support for partial share positions
Portfolio Analysis Tools
risk_adjusted_analysis- Risk - based position sizing with position awarenesscompare_tickers- Side - by - side ticker comparison (auto - uses your portfolio)portfolio_correlation_analysis- Correlation matrix analysis (auto - analyzes your holdings)
Smart Integration:
- All analysis tools auto - detect your portfolio positions
- No need to manually enter tickers you already own
- Position - aware recommendations (averaging up/down, profit taking)
Stock Screening Tools (Pre - seeded with S&P 500)
get_maverick_stocks- Bullish momentum screening from 520 S&P 500 stocksget_maverick_bear_stocks- Bearish setup identification from pre - analyzed dataget_trending_breakout_stocks- Strong uptrend phase screening with supply/demand analysisget_all_screening_recommendations- Combined screening results across all strategies- Database includes comprehensive screening data updated regularly
Advanced Research Tools (NEW) - AI - Powered Deep Analysis
research_comprehensive- Full parallel research with multiple AI agents (7 - 256x faster)research_company- Company - specific deep research with financial analysisanalyze_market_sentiment- Multi - source sentiment analysis with confidence trackingcoordinate_agents- Multi - agent supervisor for complex research orchestration
Research Features:
- Parallel Execution: 7 - 256x speedup with intelligent agent orchestration
- Adaptive Timeouts: 120s - 600s based on research depth and complexity
- Smart Model Selection: Automatic selection from 400+ models via OpenRouter
- Cost Optimization: 40 - 60% cost reduction through intelligent model routing
- Early Termination: Confidence - based early stopping to save time and costs
- Content Filtering: High - credibility source prioritization
- Error Recovery: Circuit breakers and comprehensive error handling
Backtesting Tools (NEW) - Production - Ready Strategy Testing
run_backtest- Execute backtests with VectorBT engine for any strategycompare_strategies- A/B testing framework for strategy comparisonoptimize_strategy- Walk - forward optimization with parameter tuninganalyze_backtest_results- Comprehensive performance metrics and risk analysisget_backtest_report- Generate detailed HTML reports with visualizations
Backtesting Features:
- 15+ Built - in Strategies: Including ML - powered adaptive, ensemble, and regime - aware algorithms
- VectorBT Integration: High - performance vectorized backtesting engine
- Parallel Processing: 7 - 256x speedup for multi - strategy evaluation
- Advanced Metrics: Sharpe, Sortino, Calmar ratios, maximum drawdown, win rate
- Walk - Forward Optimization: Out - of - sample testing and validation
- Monte Carlo Simulations: Robustness testing with confidence intervals
- Multi - Timeframe Support: From 1 - minute to monthly data
- Custom Strategy Development: Easy - to - use templates for custom strategies
Market Data Tools
- Market overview, sector performance, earnings calendars
- Economic indicators and Federal Reserve data
- Real - time market movers and sentiment analysis
Development Commands
# Start the server (one command!)
make dev
# Alternative startup methods
./scripts/start - backend.sh --dev # Script - based startup
./tools/fast_dev.sh # Ultra - fast startup (< 3 seconds)
uv run python tools/hot_reload.py # Auto - restart on file changes
# Server will be available at:
# - HTTP endpoint: http://localhost:8003/mcp/ (streamable - http - use with mcp - remote)
# - SSE endpoint: http://localhost:8003/sse/ (SSE - direct connection only, not mcp - remote)
# - Health check: http://localhost:8003/health
Testing
# Quick test commands
make test # Run unit tests (5 - 10 seconds)
make test - specific TEST = test_name # Run specific test
make test - watch # Auto - run tests on file changes
# Using uv (recommended)
uv run pytest # Unit tests only
uv run pytest --cov = maverick_mcp # With coverage
uv run pytest -m "" # All tests (requires PostgreSQL/Redis)
# Alternative: Direct pytest (if activated in venv)
pytest # Unit tests only
pytest --cov = maverick_mcp # With coverage
pytest -m "" # All tests (requires PostgreSQL/Redis)
Code Quality
# Quick quality commands
make lint # Check code quality (ruff)
make format # Auto - format code (ruff)
make typecheck # Run type checking (ty)
# Using uv (recommended)
uv run ruff check. # Linting
uv run ruff format. # Formatting
uv run ty check. # Type checking (Astral's modern type checker)
# Alternative: Direct commands (if activated in venv)
ruff check. # Linting
ruff format. # Formatting
ty check. # Type checking
# Ultra - fast one - liner (no installation needed)
uvx ty check. # Run ty directly without installing
Configuration
Configure MaverickMCP via .env file or environment variables:
Essential Settings:
REDIS_HOST,REDIS_PORT- Redis cache (optional, defaults to localhost:6379)DATABASE_URL- PostgreSQL connection orsqlite:///maverick_mcp.dbfor SQLite (default)LOG_LEVEL- Logging verbosity (INFO, DEBUG, ERROR)- S&P 500 data automatically seeds on first startup
Required API Keys:
TIINGO_API_KEY- Stock data provider (free tier available at tiingo.com)
Optional API Keys:
OPENROUTER_API_KEY- Strongly Recommended for Research: Access to 400+ AI models with intelligent cost optimization (40 - 60% cost savings)EXA_API_KEY- Recommended for Research: Web search capabilities for comprehensive researchOPENAI_API_KEY- Direct OpenAI access (fallback)ANTHROPIC_API_KEY- Direct Anthropic access (fallback)FRED_API_KEY- Federal Reserve economic dataTAVILY_API_KEY- Alternative web search provider
Performance:
CACHE_ENABLED=true- Enable Redis cachingCACHE_TTL_SECONDS=3600- Cache duration
๐ง Technical Details
Test Examples - Validate All Features
Test the comprehensive research capabilities and parallel processing improvements with these examples:
Core Research Features
-
Basic Research with Timeout Protection
"Research the current state of the AI semiconductor industry and identify the top 3 investment opportunities"- Tests: Basic research, adaptive timeouts, industry analysis
-
Comprehensive Company Research with Parallel Agents
"Provide comprehensive research on NVDA including fundamental analysis, technical indicators, competitive positioning, and market sentiment using multiple research approaches"- Tests: Parallel orchestration, multi - agent coordination, company research
-
Cost - Optimized Quick Research
"Give me a quick overview of AAPL's recent earnings and stock performance"- Tests: Intelligent model selection, cost optimization, quick analysis
Performance Testing
-
Parallel Performance Benchmark
"Research and compare MSFT, GOOGL, and AMZN simultaneously focusing on cloud computing revenue growth"- Tests: Parallel execution speedup (7 - 256x), multi - company analysis
-
Deep Research with Early Termination
"Conduct exhaustive research on Tesla's autonomous driving technology and its impact on the stock valuation"- Tests: Deep research depth, confidence tracking, early termination (0.85 threshold)
Error Handling & Recovery
-
Error Recovery and Circuit Breaker Test
"Research 10 penny stocks with unusual options activity and provide risk assessments for each"- Tests: Circuit breaker activation, error handling, fallback mechanisms
-
Supervisor Agent Coordination
"Analyze the renewable energy sector using both technical and fundamental analysis approaches, then synthesize the findings into actionable investment recommendations"- Tests: Supervisor routing, agent coordination, result synthesis
Advanced Features
-
Sentiment Analysis with Content Filtering
"Analyze market sentiment for Bitcoin and cryptocurrency stocks over the past week, filtering for high - credibility sources only"- Tests: Sentiment analysis, content filtering, source credibility
-
Timeout Stress Test
"Research the entire S&P 500 technology sector companies and rank them by growth potential"- Tests: Timeout management, large - scale analysis, performance under load
-
Multi - Modal Research Integration
"Research AMD using technical analysis, then find recent news about their AI chips, analyze competitor Intel's position, and provide a comprehensive investment thesis with risk assessment"- Tests: All research modes, integration, synthesis, risk assessment
Bonus Edge Case Tests
-
Empty/Invalid Query Handling
"Research [intentionally leave blank or use symbol that doesn't exist like XYZABC]"- Tests: Error messages, helpful fix suggestions
-
Token Budget Optimization
"Provide the most comprehensive possible analysis of the entire semiconductor industry including all major players, supply chain dynamics, geopolitical factors, and 5 - year projections"- Tests: Progressive token allocation, budget management, depth vs breadth
Expected Performance Metrics
When running these tests, you should observe:
- Parallel Speedup: 7 - 256x faster for multi - entity queries
- Response Times: Simple queries ~10s, complex research 30 - 120s
- Cost Efficiency: 60 - 80% reduction vs premium - only models
- Confidence Scores: Early termination when confidence > 0.85
- Error Recovery: Graceful degradation without crashes
- Model Selection: Automatic routing to optimal models per task
Docker (Optional)
For containerized deployment:
# Copy and configure environment
cp.env.example.env
# Using uv in Docker (recommended for faster builds)
docker build -t maverick_mcp.
docker run -p 8003:8003 --env - file.env maverick_mcp
# Or start with docker - compose
docker - compose up -d
Note: The Dockerfile uses uv for fast dependency installation and smaller image sizes.
Troubleshooting
Common Issues
Tools Disappearing in Claude Desktop:
- Solution: Ensure SSE endpoint has trailing slash:
http://localhost:8003/sse/ - The 307 redirect from
/sseto/sse/causes tool registration to fail - Always use the exact configuration with trailing slash shown above
Research Tool Timeouts:
- Research tools have adaptive timeouts (120s - 600s)
- Deep research may take 2 - 10 minutes depending on complexity
- Monitor progress in server logs with
make tail - log
OpenRouter Not Working:
- Ensure
OPENROUTER_API_KEYis set in.env - Check API key validity at openrouter.ai
- System falls back to direct providers if OpenRouter unavailable
# Common development issues
make tail - log # View server logs
make stop # Stop services if ports are in use
make clean # Clean up cache files
# Quick fixes:
# Port 8003 in use โ make stop
# Redis connection refused โ brew services start redis
# Tests failing โ make test (unit tests only)
# Slow startup โ ./tools/fast_dev.sh
# Missing S&P 500 data โ uv run python scripts/seed_sp500.py
# Research timeouts โ Check logs, increase timeout settings
Extending MaverickMCP
Add custom financial analysis tools with simple decorators:
@mcp.tool()
def my_custom_indicator(ticker: str, period: int = 14):
"""Calculate custom technical indicator."""
# Your analysis logic here
return {"ticker": ticker, "signal": "buy", "confidence": 0.85}
@mcp.resource("custom://analysis/{ticker}")
def custom_analysis(ticker: str):
"""Custom analysis resource."""
# Your resource logic here
return f"Custom analysis for {ticker}"
Development Tools
Quick Development Workflow
make dev # Start everything
make stop # Stop services
make tail - log # Follow server logs
make test # Run tests quickly
make experiment # Test custom analysis scripts
Smart Error Handling
MaverickMCP includes helpful error diagnostics:
- DataFrame column case sensitivity โ Shows correct column name
- Connection failures โ Provides specific fix commands
- Import errors โ Shows exact install commands
- Database issues โ Suggests SQLite fallback
Fast Development Options
- Hot Reload:
uv run python tools/hot_reload.py- Auto - restart on changes - Fast Startup:
./tools/fast_dev.sh- < 3 second startup - Quick Testing:
uv run python tools/quick_test.py --test stock- Test specific features - Experiment Harness: Drop .py files in
tools/experiments/for auto - execution
Performance Features
- Parallel Screening: 4x faster stock analysis with ProcessPoolExecutor
- Smart Caching:
@quick_cachedecorator for instant re - runs - Optimized Tests: Unit tests complete in 5 - 10 seconds
๐ License
MIT License - see LICENSE file for details. Free to use for personal and commercial purposes.
Support
If you find MaverickMCP useful:
- Star the repository
- Report bugs via GitHub issues
- Suggest features
- Improve documentation
Built for traders and investors. Happy Trading!
Read the full build guide: How to Build an MCP Stock Analysis Server
Disclaimer
This software is for educational and informational purposes only. It is NOT financial advice.
Investment Risk Warning: Past performance does not guarantee future results. All investments carry risk of loss, including total loss of capital. Technical analysis and screening results are not predictive of future performance. Market data may be delayed, inaccurate, or incomplete.
No Professional Advice: This tool provides data analysis, not investment recommendations. Always consult with a qualified financial advisor before making investment decisions. The developers are not licensed financial advisors or investment professionals. Nothing in this software constitutes professional financial, investment, legal, or tax advice.
Data and Accuracy: Market data provided by third - party sources (Tiingo, Yahoo Finance, FRED). Data may contain errors, delays, or omissions. Technical indicators are mathematical calculations based on historical data. No warranty is made regarding data accuracy or completeness.
Regulatory Compliance: US Users - This software is not registered with the SEC, CFTC, or other regulatory bodies. International Users - Check local financial software regulations before use. Users are responsible for compliance with all applicable laws and regulations. Some features may not be available in certain jurisdictions.
Limitation of Liability: Developers disclaim all liability for investment losses or damages. Use this software at your own risk. No guarantee is made regarding software availability or functionality.
By using MaverickMCP, you acknowledge these risks and agree to use the software for educational purposes only.
Alternatives











