← Back to MCP list
§ Quickstart
Add the following to your MCP client configuration (Cursor, Claude Desktop, etc.):
After git clone https://github.com/wshobson/maverick-mcp.git, run from repo directory. Replace /path/to/maverick-mcp with your path.
Clone the repository:
git clone https://github.com/wshobson/maverick-mcp.gitMCP Client Configuration
{
"mcpServers": {
"maverick-mcp": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/maverick-mcp",
"python",
"-m",
"maverick_mcp.api.server",
"--transport",
"stdio"
]
}
}
}Config file locations
- Cursor: Settings → MCP, or edit ~/.cursor/mcp.json
- Claude Desktop: edit claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\)
§ Tools Reference
4 tools
get_full_technical_analysis
Full technical analysis (RSI, MACD, Bollinger, etc.)
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | ✓ | Ticker |
portfolio_correlation_analysis
Portfolio correlation matrix
| Parameter | Type | Required | Description |
|---|---|---|---|
| tickers | string[] | ✓ | Ticker list |
compare_tickers
Side-by-side ticker comparison
| Parameter | Type | Required | Description |
|---|---|---|---|
| tickers | string[] | ✓ | Ticker list |
run_backtest
Strategy backtest
| Parameter | Type | Required | Description |
|---|---|---|---|
| strategy | string | ✓ | Strategy description |
§ Examples
Once configured, you can ask the AI directly:
stock_analysis prompt
Run full technical analysis on NVDA with support/resistance levels
Built-in stock_analysis prompt template
Portfolio optimization
Optimize AAPL, GOOGL, MSFT, AMZN portfolio for max Sharpe
portfolio_optimization prompt template
LadleAgent