A Model Context Protocol (MCP) server that connects your TastyTrade trading account to AI assistants like Claude Desktop and ChatGPT for conversational trading and portfolio management.
- π Full OAuth Support - Production trading via OAuth2 authentication
- π All Instrument Types - Stocks, Options, Futures, Crypto
- β Tested & Verified - Real orders placed and cancelled successfully
- π Universal Order Handler - Same code works in sandbox and production
- π€ Claude Desktop - Native MCP integration via stdio
- π¬ ChatGPT - HTTP MCP Bridge for Developer Mode
- π Universal Deployment - Works on any cloud platform
- π Real-time Market Data - Live quotes, options chains, market search
- πΌ Portfolio Management - Account positions, balances, order history
- π Symbol Search - Find stocks, options, and other instruments
- π Security First - Two-step trading confirmation, audit logging
- π° Full Order Support - Limit, Market, Stop, Stop Limit orders
β οΈ Important: The TastyTrade API has certain limitations. The following features are NOT available:
- Options Greeks - Delta, Gamma, Theta, etc. are not provided by the API
- Historical Price Data - No historical bars/candles endpoint available
- These tools have been removed to avoid misleading functionality
- π Secure Authentication - Your credentials never exposed to AI
- π Comprehensive Audit Trail - All operations logged for compliance
- π« LLM Safety - Trading requires explicit user confirmation
- TastyTrade trading account (production or sandbox)
- Python 3.8+ with pipx installed
# 1. Install the package
pipx install tastytrade-mcp
# 2. Run interactive setup
tastytrade-mcp setup
# 3. Start MCP server for Claude Desktop
tastytrade-mcp localThe setup wizard will guide you through two authentication modes:
- Username/password authentication
- Credentials stored in
.envfile - Quick setup, no database required
- OAuth2 with encrypted token storage
- Persistent authentication sessions
- SQLite database with encrypted tokens
Database mode uses OAuth2 personal grants for secure, encrypted token storage. This is perfect for personal use and self-hosted deployments.
Step 1: Create Your OAuth Application
- Go to https://my.tastytrade.com
- Navigate to: Manage β My Profile β API β OAuth Applications
- Click + New OAuth Client
- Fill out the form:
- Client Name: TastyTrade MCP Server (or your preferred name)
- Redirect URI:
http://localhost:8000/callback(required but not used for personal grants) - Scopes: Select
readandtrade
- Click Create
- IMPORTANT: Copy and securely save:
- β Client ID
- β Client Secret (shown only once!)
Step 2: Generate Personal Grant
- On the OAuth Applications page, click Manage next to your application
- Click Create Grant
- IMPORTANT: Copy and securely save your Refresh Token (shown only once!)
Step 3: Run Database Setup
tastytrade-mcp setup --mode databaseThe setup wizard will prompt you for:
- Client ID (from Step 1)
- Client Secret (from Step 1)
- Refresh Token (from Step 2)
Security Features:
- β Tokens encrypted and stored in local SQLite database
- β Automatic access token refresh (every 15 minutes)
- β Long-lived refresh token (never expires)
- β No browser redirects - fully local setup
Important Security Notes:
β οΈ Keep Client Secret and Refresh Token safe - they're like passwordsβ οΈ Never commit them to git or share publiclyβ οΈ If compromised, delete the grant on my.tastytrade.com and create a new oneβ οΈ Store them in environment variables or secure password manager
# Interactive setup wizard
tastytrade-mcp setup
# Simple mode setup
tastytrade-mcp setup --mode simple
# Database mode setup
tastytrade-mcp setup --mode database
# Check current status
tastytrade-mcp status
# Test your connection
tastytrade-mcp test
# Clean all config/database files
tastytrade-mcp clean- Credentials never exposed to AI assistants
- All tokens encrypted using Fernet symmetric encryption
- Two-step trading confirmation required
- Comprehensive audit logging
tastytrade-mcp localThen restart Claude Desktop and ask: "Show my TastyTrade positions"
tastytrade-mcp setup # Interactive setup wizard
tastytrade-mcp local # Start MCP server for Claude Desktop
tastytrade-mcp status # Show configuration status
tastytrade-mcp test # Test API connections
tastytrade-mcp clean # Remove all config/database files
tastytrade-mcp --help # Show all available commandsOnce you've run tastytrade-mcp local, the MCP server is ready for Claude Desktop:
- Restart Claude Desktop - Close and reopen the application
- Verify Connection - Claude should detect the MCP server automatically
- Start Trading - Ask Claude about your positions, balances, or market data
"Show me my current TastyTrade positions"
"What's my account balance?"
"Get a quote for AAPL"
"Search for AI-related stocks"
"Show me my recent orders"
accounts- List all TastyTrade accountsbalances- Get account balance informationpositions- View current positions
search_symbols- Search stocks, ETFs, and other instrumentsquote- Get real-time market quotessearch_options- Find options chains with filtering
audit_log- View trading activity audit trailsecurity_status- Check authentication and encryption status
# Check current installation status
tastytrade-mcp status
# Test API connection and authentication
tastytrade-mcp test
# Remove all configuration and database files
tastytrade-mcp clean
# Show all available commands
tastytrade-mcp --helpIf you prefer manual setup:
git clone <repository-url>
cd Tasty_MCP
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
# Create .env file with your credentials
echo "TASTYTRADE_USERNAME=your_email@tastytrade.com" > .env
echo "TASTYTRADE_PASSWORD=your_password" >> .env
echo "TASTYTRADE_USE_PRODUCTION=true" >> .env
# Start server
python tastytrade_unified_server.py- Never commit credentials - Always use
.envfiles - Use production accounts - Connect to your real TastyTrade account
- Monitor audit logs - Review all trading activity
- Secure your deployment - Use HTTPS and authentication tokens
- Regular updates - Keep the server updated for security patches
- Real Trading: This connects to your actual TastyTrade account with real money
- User Responsibility: All trades require your explicit confirmation
- No Financial Advice: This is a technical tool, not investment advice
- Security: Keep your credentials secure and use HTTPS in production
"Show me my current positions and account balances"
"What are my open orders?"
"Get real-time quotes for NVDA, TSLA, and AAPL"
"Get live quotes for my stock holdings"
"Stream real-time data for AAPL for 30 seconds"
"Show me the current market price of Bitcoin futures"
# Step 1: Get your current option positions
"Show me all my current option positions"
# Step 2: Get real-time pricing (use exact symbols from positions)
"Get real-time quotes for these symbols: AMD 251121P00165000, NVDA 251121C00240000"
# Step 3: Analyze options strategies
"Analyze my AMD put spread strategy with current market conditions"
For real-time streaming of option quotes, use stream_option_quotes:
Important: This tool takes the underlying symbol and constructs the option symbols for you.
Correct Usage:
{
"symbol": "AAPL",
"strikes": "230,235,240",
"expiration": "2025-10-17",
"option_type": "put"
}Parameters:
symbol: Underlying stock symbol (e.g., "AAPL")strikes: Comma-separated strike prices (e.g., "230,235,240")expiration: Expiration date in YYYY-MM-DD formatoption_type: Either "call" or "put"duration: How long to stream in seconds (default: 10)
Example Questions:
"Stream option quotes for AAPL puts at strikes 230, 235, and 240 expiring 2025-10-17"
"Get real-time quotes for SPY calls at 570, 575, 580 expiring next Friday"
Note: Do NOT pass full option symbols like "AAPL 251017P00230000" - the tool constructs these for you.
"Search for symbols related to artificial intelligence"
"Get the option chain for TSLA expiring in 30 days"
"Find options with delta around 0.30 for SPY"
"Create a buy order for 100 shares of AAPL at market price"
"Set up a stop-loss order for my NVDA position at $200"
"Show me the status of my pending orders"
"Calculate the total value of my portfolio"
"Show me my unrealized P&L by position"
"What's my current buying power?"
If option prices aren't showing:
- Get exact symbols first: Use
get_positionsto see your actual option symbols - Use correct format: Option symbols look like
AAPL 251121C00150000(not "AAPL $150 Call") - Try direct quotes: Use
get_realtime_quoteswith the exact symbols from your positions
If you keep getting "Allow" prompts:
- This is normal security behavior
- Select "Always Allow" to reduce frequency
- Each tool request requires permission for security
If database mode setup fails:
-
"Invalid refresh token" errors:
- Verify you copied the refresh token correctly (no extra spaces)
- Ensure the grant hasn't been deleted on my.tastytrade.com
- Create a new grant if the refresh token was compromised
-
"Invalid client credentials" errors:
- Verify CLIENT_ID and CLIENT_SECRET are correct
- Ensure no extra spaces when copying credentials
- Check that you're using credentials from the same OAuth app
-
Database connection errors:
- Ensure write permissions in current directory
- Try running
tastytrade-mcp cleanand setup again
-
Token refresh failures:
- Check that CLIENT_SECRET is correctly set in .env file
- Verify refresh token hasn't been revoked
- Create a new personal grant if needed
If real-time quotes aren't working:
- Check that markets are open
- Verify your internet connection
- Try reducing the duration parameter
Currently, the MCP server uses personal grant OAuth for individual use. We're planning to become a TastyTrade Trusted Partner to enable full OAuth flow:
What this means:
- β One-click setup: Users can simply click "Connect with TastyTrade"
- β No manual token management: Browser-based OAuth consent screen
- β Multi-user support: Deploy once, serve many users
- β Simpler onboarding: No need to create OAuth apps manually
Current Status: Personal grant flow (perfect for open source self-hosted use) Future Goal: Trusted partner approval for public deployments
If you're interested in helping or have feedback on this roadmap, please open a GitHub issue!
- π¦ Installation - Complete installation guide
- π₯οΈ Claude Desktop Setup - MCP configuration
- π¬ ChatGPT Integration - OpenAI setup
- π OAuth Database Mode - Advanced auth
- π Deployment Overview - Cloud deployment guide
- ποΈ Architecture - System design
- π€ Contributing - Development guide
- π Coding Standards - Code style
- π§ Handlers - Available MCP tools
| Type | Sandbox | Production | Notes |
|---|---|---|---|
| Equity (Stocks) | β | β | Fully tested |
| Equity Options | β | β | Single & multi-leg |
| Futures | β | Requires special account | |
| Future Options | β | Requires special account | |
| Cryptocurrency | β | β | Not yet supported by API |
- Documentation: See docs/ for comprehensive guides
- Issues: Open GitHub issues for bugs or feature requests
- Security: Review our security policies before deployment
This project is licensed under the MIT License - see the LICENSE file for details.
π¨ Trading Disclaimer: This software connects to real trading accounts with actual money. All trading involves financial risk. Users are responsible for their trading decisions and should understand the risks before using this tool.