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.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"options-flow": {
"cwd": "/path/to/mcp-options-order-flow-server",
"env": {
"GRPC_HOST": "localhost",
"GRPC_PORT": "9090"
},
"args": [
"run_server.py"
],
"command": "python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Remote MCP server to integrate and validate self-hosted PayRam deployments.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Options Order Flow Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
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 │ │ │
└─────────────────────┘ └─────────────────────┘ └─────────────────────┘
mcp-trading-data-broker: The Go-based data broker service
Python 3.8+: Required for MCP server
Network Access: For gRPC communication between services
# 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
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
# 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
Add to your Claude Desktop MCP configuration:
{
"mcpServers": {
"options-flow": {
"command": "python",
"args": ["run_server.py"],
"cwd": "/path/to/mcp-options-order-flow-server",
"
... [View full README on GitHub](https://github.com/fintools-ai/mcp-options-order-flow-server#readme)