Financial Stock Market MCP Server
Provides tools for stock data retrieval, historical analysis, and market comparison using yfinance. It features robust guardrails to ensure secure interactions and blocks restricted content like investment advice.
README
A Financial MCP Project
A Model Context Protocol (MCP) implementation demonstrating financial data analysis as a use case, built with yfinance and featuring a comprehensive server with tools, resources, and prompts for stock market analysis. Now enhanced with enterprise-grade guardrails for security, compliance, and safety. This project was inspired after I enrolled in the MCP Course offered by DeepLearning.ai in collaboration with Anthropic.
๐ Features
MCP Server (financial_server.py)
- Tools: 4 powerful financial analysis tools
get_stock_info: Get comprehensive stock informationget_historical_data: Retrieve historical price datacompare_stocks: Compare multiple stocks by metricsget_market_summary: Get major market indices summary
- Resources: Access saved financial data
finance://portfolios: List all saved analysesfinance://{filename}: Access specific data files
- Prompts: Pre-built analysis templates
analyze_stock_prompt: Comprehensive stock analysisportfolio_comparison_prompt: Multi-stock portfolio analysis
Enhanced MCP Client (enhanced_financial_chatbot.py)
- Interactive chat interface with financial focus
- ๐ก๏ธ Comprehensive guardrails system
- Support for resources (@portfolios, @filename)
- Support for prompts (/prompts, /prompt <name> <args>)
- Integration with multiple MCP servers
- Real-time financial data queries
- Session tracking and monitoring
- Investment advice detection and blocking
๐ก๏ธ Comprehensive Guardrails System (guardrails.py)
- Content Filtering: Blocks investment advice requests and high-risk content
- Rate Limiting: Prevents API abuse (15 calls/minute, 200/hour, 2000/day)
- Input Validation: Stock symbol format validation and sanitization
- Security Protection: Code injection detection and blocking
- Session Management: User session tracking with violation logging
- Risk Assessment: Automatic query risk level evaluation
- Response Enhancement: Automatic disclaimers and safety warnings
- Compliance Features: Regulatory compliance and professional referrals
๐ฆ Installation
- Clone and setup the project:
# Create project directory
mkdir financial-mcp-project
cd financial-mcp-project
# Initialize with uv
uv init
- Install dependencies:
# Create virtual environment
uv venv
# Activate virtual environment
source .venv/bin/activate # Linux/Mac
# or
.venv\Scripts\activate # Windows
# Install core dependencies
uv add mcp yfinance anthropic python-dotenv nest-asyncio pandas numpy
# Install security libraries for guardrails
uv add ratelimit validators bleach
- Set up environment variables:
# Copy example environment file
cp .env.example .env
# Edit .env with your Anthropic API key
ANTHROPIC_API_KEY=your_actual_api_key_here
- Create required files and directories:
# Create data directory
mkdir -p financial_data
# Create enhanced version directory
mkdir -p enhanced_version
# Create guardrails configuration in enhanced_version folder
touch enhanced_version/guardrails_config.json
๐โโ๏ธ Quick Start
Running the MCP Server (Testing)
# Test the server with MCP inspector
npx @modelcontextprotocol/inspector uv run financial_server.py
Running the Enhanced Financial Chatbot
# Navigate to enhanced version folder
cd enhanced_version
# Start the chatbot with comprehensive guardrails
uv run enhanced_financial_chatbot.py
Running the Simple Version (Optional)
# Navigate to enhanced version folder
cd enhanced_version
# Start the chatbot with basic guardrails
uv run simple_financial_chatbot.py
Running the Original Basic Chatbot
# From main directory
uv run financial_chatbot.py
๐ฌ Usage Examples
Basic Stock Queries
Query: What's the current price of Apple stock?
Query: Get me historical data for TSLA over the past year
Query: Compare AAPL, GOOGL, and MSFT by market cap
Using Resources
Query: @portfolios # List all saved data
Query: @AAPL_info.json # View specific stock data
Query: @market_summary_20241220.json # View market summary
Using Prompts
Query: /prompts # List available prompts
Query: /prompt analyze_stock_prompt symbol=AAPL # Analyze Apple stock
Query: /prompt portfolio_comparison_prompt symbols=["AAPL","GOOGL","MSFT"] timeframe=1y
Guardrails Features
Query: /status # Check session statistics and violations
Query: Should I buy Apple stock? # Will be blocked - investment advice
Query: What's a good investment? # Will be blocked - investment advice
Advanced Analysis
Query: Analyze the tech sector by comparing AAPL, GOOGL, MSFT, and NVDA
Query: What's the current market sentiment based on major indices?
Query: Create a risk assessment for a portfolio containing AAPL, TSLA, and NVDA
๐ ๏ธ Available Tools
| Tool | Description | Parameters | Guardrails Applied |
|---|---|---|---|
get_stock_info |
Get comprehensive stock information | symbol (required) |
Symbol validation, rate limiting |
get_historical_data |
Get historical price data | symbol, period, interval |
Symbol validation, period limits, data point limits |
compare_stocks |
Compare multiple stocks | symbols (list), metric |
Symbol validation, maximum 10 symbols |
get_market_summary |
Get major market indices | None | Rate limiting only |
๐ Supported Data
- Stock Information: Price, market cap, P/E ratio, dividends, volume
- Historical Data: OHLCV data with customizable periods and intervals
- Market Indices: S&P 500, Dow Jones, NASDAQ, Russell 2000, VIX
- Comparison Metrics: Price, market cap, P/E ratio, volume, and more
๐ Comprehensive Safety Features
Content Filtering
- Investment Advice Detection: Blocks queries asking for buy/sell recommendations
- High-Risk Content: Flags mentions of options, leverage, penny stocks, etc.
- Blocked Keywords: Prevents "pump and dump", "guaranteed returns", etc.
- Professional Referrals: Redirects advice requests to licensed financial advisors
Security Protection
- Input Sanitization: Removes dangerous characters and validates input length
- Code Injection Prevention: Blocks SQL injection, XSS, and code execution attempts
- Symbol Validation: Ensures proper stock symbol format and blocks fake symbols
- Response Filtering: Limits response length and adds security metadata
Rate Limiting & Resource Protection
- Per-Session Limits: 15 calls/minute, 200/hour, 2000/day
- Burst Protection: Prevents rapid-fire requests
- Data Point Limits: Maximum 10,000 historical data points per request
- Symbol Limits: Maximum 10 symbols per comparison
Compliance & Monitoring
- Session Tracking: Unique session IDs for each user interaction
- Violation Logging: Comprehensive logging of security events
- Risk Assessment: Automatic classification of query risk levels
- Audit Trail: Complete record of user interactions and system responses
๐ Project Structure
financial-mcp-project/
โโโ financial_server.py # MCP server with financial tools
โโโ financial_chatbot.py # Original basic chatbot
โโโ server_config.json # MCP server configuration
โโโ pyproject.toml # Project dependencies
โโโ .env.example # Environment variables template
โโโ README.md # This file
โโโ financial_data/ # Generated data directory
โ โโโ AAPL_info.json
โ โโโ GOOGL_info.json
โ โโโ NVDA_info.json
โ โโโ market_summary_20250720_132820.json
โโโ enhanced_version/ # Enhanced chatbot with guardrails
โโโ enhanced_financial_chatbot.py # Main chatbot with comprehensive guardrails
โโโ simple_financial_chatbot.py # Chatbot with basic guardrails (optional)
โโโ guardrails.py # Comprehensive security module
โโโ guardrails_config.json # Guardrails configuration
๐งช Testing
Test the MCP Server
npx @modelcontextprotocol/inspector uv run financial_server.py
Test Guardrails
# Navigate to enhanced version folder
cd enhanced_version
# Test basic validation
python -c "from guardrails import FinancialGuardrails; g = FinancialGuardrails(); print(g.validate_symbols(['AAPL']))"
# Test investment advice detection
python -c "from guardrails import validate_financial_query; print(validate_financial_query('Should I buy Apple stock?'))"
Test Individual Components
# Test server functions directly
python -c "import yfinance as yf; print(yf.Ticker('AAPL').info['currentPrice'])"
๐ง Configuration
Environment Variables
ANTHROPIC_API_KEY: Required for Claude API accessLOG_LEVEL: Logging level (DEBUG, INFO, WARNING, ERROR)FINANCE_DATA_DIR: Directory for saving financial data
Guardrails Configuration (enhanced_version/guardrails_config.json)
{
"rate_limiting": {
"max_calls_per_minute": 15,
"max_calls_per_hour": 200,
"max_calls_per_day": 2000,
"min_request_interval_seconds": 1
},
"content_filtering": {
"blocked_keywords": [
"pump and dump",
"insider trading",
"guaranteed returns",
"risk-free investment"
],
"high_risk_terms": [
"options", "derivatives", "leverage", "margin",
"penny stocks", "crypto", "day trading"
]
},
"symbol_validation": {
"max_symbols_per_request": 10,
"blocked_symbols": ["SCAM", "FAKE", "TEST"]
},
"security": {
"sanitize_inputs": true,
"max_input_length": 2000,
"timeout_seconds": 45
}
}
Server Configuration
Edit server_config.json to configure MCP servers:
{
"mcpServers": {
"finance": {
"command": "uv",
"args": ["run", "financial_server.py"]
},
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
}
}
}
๐จ Important Security Notes
What the Guardrails Prevent
- Investment Advice: Blocks queries asking for buy/sell recommendations
- High-Risk Content: Flags dangerous financial instruments and schemes
- API Abuse: Rate limiting prevents server overload
- Security Threats: Blocks code injection and malicious input
- Compliance Violations: Ensures regulatory compliance with disclaimers
What Users Can Still Do
- Get Factual Data: Stock prices, market information, company data
- Analyze Trends: Historical performance and technical analysis
- Compare Options: Side-by-side stock comparisons
- Educational Content: Learn about financial concepts and markets
Monitoring and Logging
- All security violations are logged with timestamps
- Session statistics available via
/statuscommand - Comprehensive audit trail for compliance purposes
- Real-time monitoring of suspicious activity
๐ Extended Usage
Portfolio Analysis with Guardrails
# This will work - factual analysis
Query: /prompt portfolio_comparison_prompt symbols=["AAPL","GOOGL","MSFT"] timeframe=1y
# This will be blocked - investment advice
Query: Which of these stocks should I buy for my retirement portfolio?
Market Research (Compliant)
# Allowed - factual market data
Query: Get me a market summary and compare TSLA's performance to the S&P 500
# Blocked - prediction request
Query: Which stocks will go up next week?
Risk Assessment (Educational)
# Allowed - educational risk analysis
Query: Compare the historical volatility of AAPL, TSLA, and QQQ over 6 months
# Blocked - specific investment guidance
Query: How much should I invest in each of these stocks?
๐ก๏ธ Guardrails Architecture
Client-Side Protection (enhanced_version/enhanced_financial_chatbot.py)
- Query validation and filtering
- Session management and tracking
- User interface for monitoring
- Response enhancement with disclaimers
Modular Security (enhanced_version/guardrails.py)
- Reusable security components
- Configurable validation rules
- Comprehensive logging system
- Risk assessment algorithms
Configuration-Driven (enhanced_version/guardrails_config.json)
- Adjustable security parameters
- Environment-specific settings
- Easy policy updates
- Compliance customization
Security Contributions
When contributing to guardrails:
- Test all security features thoroughly
- Document new validation rules
- Consider compliance implications
- Update configuration examples
๐ Security Notice
This MCP server using stdio transport for local-only deployment. This design choice prioritizes security when handling financial data:
- โ Local-only execution - Server runs on your device only
- โ No network exposure - Uses stdin/stdout communication
- โ Financial data privacy - Your data never leaves your machine
Acknowledgments
- Model Context Protocol Official Documentation
- DeepLearning.ai - MCP Course Platform
- MCP GitHub Organization
- yfinance Python Library
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
โ ๏ธ Legal Disclaimer
IMPORTANT: This software is for educational and informational purposes only and is intended for non-commercial use. It is not intended as financial advice, investment guidance, or professional recommendation.
What This System Does
- Provides factual financial data and market information
- Offers educational content about financial concepts
- Enables data analysis and research capabilities
- Maintains strict compliance with informational use guidelines
What This System Does NOT Do
- Provide investment advice or recommendations
- Guarantee accuracy of market predictions
- Replace professional financial consultation
- Offer personalized investment strategies
User Responsibilities
- Consult qualified financial professionals for investment decisions
- Verify all data through official sources before acting
- Understand that past performance does not guarantee future results
- Use information solely for educational and research purposes
Compliance Statement
This system includes comprehensive guardrails designed to prevent the provision of unlicensed financial advice and ensure compliance with relevant regulations. All users are directed to consult with licensed financial advisors for investment decisions.
By using this system, you acknowledge that you understand these limitations and will use the information responsibly.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.