Documentation Index
Fetch the complete documentation index at: https://docs.vectrade.io/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The VecTrade MCP Integration Kit provides 27 financial tools to any AI IDE that supports the Model Context Protocol.
Supported clients: Claude Desktop, Cursor, VS Code Copilot, Windsurf, Cline, Continue.dev.
Installation
Quick Setup
Interactive Wizard
python -m vectrade_mcp.setup_wizard
The wizard will:
- Detect your installed IDE clients
- Ask for your VecTrade API key
- Write the correct config file automatically
CLI Auto-Setup
If you have the VecTrade CLI installed:
vectrade mcp setup cursor
vectrade mcp setup claude
vectrade mcp setup vscode
Manual Configuration
Copy the appropriate config for your IDE from the configs directory.
| IDE | Config File |
|---|
| Claude Desktop | configs/claude-desktop.json |
| Cursor | configs/cursor.json |
| VS Code (Copilot) | configs/vscode.json |
| Windsurf | configs/windsurf.json |
| Cline | configs/cline.json |
| Continue.dev | configs/continue-dev.json |
Quotes & Market Data
| Tool | Description |
|---|
get_quote | Real-time stock quote |
get_batch_quotes | Multiple quotes in one call |
get_historical_prices | Historical OHLCV data |
get_market_movers | Top gainers/losers/active |
get_market_status | Market open/close status |
Fundamentals
| Tool | Description |
|---|
get_fundamentals | Company financial data |
get_income_statement | Revenue, earnings, margins |
get_balance_sheet | Assets, liabilities, equity |
get_cash_flow | Operating/investing/financing |
get_company_profile | Company info and description |
Technical Analysis
| Tool | Description |
|---|
get_technicals | Technical indicators (RSI, MACD, etc.) |
get_support_resistance | Key price levels |
get_chart_patterns | Detected chart patterns |
News & Sentiment
| Tool | Description |
|---|
get_news | Latest financial news |
get_sentiment | Aggregated sentiment score |
get_analyst_ratings | Analyst consensus and targets |
Screening & Discovery
| Tool | Description |
|---|
run_screener | Stock screening with filters |
get_sector_performance | Sector returns and rotation |
get_similar_stocks | Find similar companies |
AI Analysis
| Tool | Description |
|---|
analyze_stock | AI-powered stock analysis |
compare_stocks | Side-by-side AI comparison |
explain_movement | Explain price movement |
Portfolio & Watchlist
| Tool | Description |
|---|
get_portfolio_summary | Portfolio overview |
get_watchlist | Current watchlist |
add_to_watchlist | Add symbol to watchlist |
get_alerts | Active price alerts |
Verification
After setup, verify your configuration:
python -m vectrade_mcp.verify
Docker
For isolated deployment:
cd docker/
docker compose up -d
Links