AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Mcp Options Order Flow Server

mcp-fintools-ai-mcp-options-order-flow-server · by fintools-ai

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 reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add mcp-fintools-ai-mcp-options-order-flow-server

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ● Network access Used
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-fintools-ai-mcp-options-order-flow-server)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
○ stale · 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mcp Options Order Flow Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

MCP Options Order Flow Server

[](https://python.org) [](https://modelcontextprotocol.io) [](https://github.com/jlowin/fastmcp) [](https://grpc.io) [](https://opensource.org/licenses/MIT)

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

  1. 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
  1. Python 3.8+: Required for MCP server
  2. Network Access: For gRPC communication between services

⚡ Quick Start

1. Installation

# Clone the repository
git clone 
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 symbol
  • configurations (array): Configuration objects with:
  • expiration (integer): Expiration date in YYYYMMDD format
  • strike_range (array): List of strike prices to monitor
  • include_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

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.