MCP Options Order Flow Server
A high-performance MCP server for comprehensive options order flow analysis.
MCP Options Order Flow Server
A high-performance Model Context Protocol (MCP) server for comprehensive options order flow analysis. This server provides real-time options order flow data, pattern detection, and institutional bias analysis through an intuitive MCP interface.
š Features
- Real-time Options Flow Analysis: Monitor options order flow across multiple contracts with sub-10ms response times
- Advanced Pattern Detection: Identify sweeps, blocks, and unusual volume patterns with institutional-grade algorithms
- Institutional Bias Tracking: Monitor smart money positioning and directional sentiment
- Historical Trend Analysis: 30-minute interval analysis with key directional changes
- Dynamic Monitoring: Configure and monitor specific strike ranges and expirations without restarts
- High Performance: Built for production use with distributed Go+Python architecture
šļø Architecture
This MCP server integrates with the mcp-trading-data-broker Go service to provide:
āāāāāāāāāāāāāāāāāāāāāāā gRPC āāāāāāāāāāāāāāāāāāāāāāā WebSocket āāāāāāāāāāāāāāāāāāāāāāā
ā MCP Options Server ā āāāāāāāāāāāŗ ā mcp-trading-data- ā āāāāāāāāāāāāāāāŗ ā Market Data ā
ā (Python) ā ā broker (Go) ā ā Provider ā
ā ā ā ā ā ā
ā ⢠MCP Tools ā ā ⢠Options Analysis ā ā ⢠Options Quotes ā
ā ⢠XML Formatting ā ā ⢠Pattern Detection ā ā ⢠Real-time Data ā
ā ⢠Context Building ā ā ⢠Data Storage ā ā ā
āāāāāāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāāāāāā
š Prerequisites
-
mcp-trading-data-broker: The Go-based data broker service
- Provides gRPC server on port 9090
- Handles real-time options data collection and analysis
- Must be running before starting this MCP server
-
Python 3.8+: Required for MCP server
-
Network Access: For gRPC communication between services
ā” Quick Start
1. Installation
# Clone the repository
git clone <repository-url>
cd mcp-options-order-flow-server
# Create virtual environment
python -m venv venv
source venv/bin/activate # On macOS/Linux
# venv\Scripts\activate # On Windows
# Install dependencies
pip install -r requirements.txt
2. Configuration
Set environment variables:
# gRPC Data Broker Connection
export GRPC_HOST=localhost
export GRPC_PORT=9090
export GRPC_TIMEOUT=30
# Optional: Custom logging
export LOG_LEVEL=INFO
3. Start the Server
# Method 1: Using the convenience script
python run_server.py
# Method 2: Using module execution
python -m src.mcp_server
# Method 3: Direct execution
python src/mcp_server.py
4. Claude Desktop Integration
Add to your Claude Desktop MCP configuration:
{
"mcpServers": {
"options-flow": {
"command": "python",
"args": ["run_server.py"],
"cwd": "/path/to/mcp-options-order-flow-server",
"env": {
"GRPC_HOST": "localhost",
"GRPC_PORT": "9090"
}
}
}
}
š ļø Available MCP Tools
1. analyze_options_flow
Get comprehensive options order flow analysis for a ticker.
Parameters:
ticker(string): Stock ticker symbol (e.g., "SPY", "QQQ")
Returns: XML-formatted analysis including:
- Monitored contracts grouped by expiration and strike
- Current activity levels and directional bias
- Detected patterns with confidence scores
- Historical trend analysis with 30-minute intervals
- Institutional bias and most active strikes
2. configure_options_monitoring_tool
Configure options monitoring for specific contracts.
Parameters:
ticker(string): Stock ticker symbolconfigurations(array): Configuration objects with:expiration(integer): Expiration date in YYYYMMDD formatstrike_range(array): List of strike prices to monitorinclude_both_types(boolean): Monitor both calls and puts
Example:
{
"ticker": "SPY",
"configurations": [
{
"expiration": 20240419,
"strike_range": [400, 405, 410],
"include_both_types": true
}
]
}
3. get_monitoring_status_tool
Get current monitoring configuration status.
Parameters:
ticker(string): Stock ticker symbol
Returns: XML-formatted status showing all actively monitored contracts
4. data_broker_health_check
Check connectivity and health status of the data broker.
Returns: Health status with connection details and response time metrics
š” Example Usage
1. Configure Monitoring
"Please monitor SPY options for expiration 2024-04-19, strikes 400-410, both calls and puts"
2. Analyze Options Flow
"Analyze the current options flow for SPY"
3. Check Monitoring Status
"What options contracts are currently being monitored for SPY?"
sites are properly configured
Related Servers
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Pharo NeoConsole
Evaluate Pharo Smalltalk expressions and get system information via a local NeoConsole server.
Base MCP Server
An MCP server providing onchain tools for AI applications to interact with the Base Network and Coinbase API.
SpecBridge
Automatically generates MCP tools from OpenAPI specifications by scanning a folder for spec files. No configuration is needed and it supports authentication via environment variables.
Model Context Protocol servers
A collection of reference server implementations for the Model Context Protocol (MCP) using Typescript and Python SDKs.
Figma Context MCP
Provides Figma layout information to AI coding agents like Cursor.
AI Agent with MCP
An AI agent using the Model Context Protocol (MCP) with a Node.js server providing REST resources for users and messages.
Release Notes Server
Generates release notes from GitHub repositories by fetching and organizing commits.
MCP Playwright Server
Automate web testing and tasks by connecting Claude Desktop with Playwright.
Gemsuite
The ultimate open-source server for advanced Gemini API interaction with MCP, intelligently selects models.
Shell MCP
Securely execute shell commands with whitelisting, resource limits, and timeout controls for LLMs.