ApexVol MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ApexVol MCP ServerWhat's the IV rank for SPY?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ApexVol MCP Server
A Model Context Protocol (MCP) server that provides natural language access to ApexVol's options analytics platform. Query options chains, volatility metrics, Greeks, flow analysis, and more using Claude Code or Claude Desktop.
Architecture
Customer's Machine ApexVol Platform
┌─────────────────────┐ ┌─────────────────────┐
│ Claude Code/Desktop │ │ apexvol.com │
│ │ │ │ │
│ ▼ │ │ │
│ ApexVol MCP │──── HTTPS ───▶│ /api/mcp/data/... │
│ (runs locally) │ │ │
└─────────────────────┘ └─────────────────────┘The MCP server runs locally on your machine and makes API calls to the ApexVol platform. No additional infrastructure required.
Related MCP server: BlockRun MCP
Features
29 Analytics Tools covering the full ApexVol API
Natural Language Interface - Ask questions like "What's the IV rank for SPY?"
Claude Code & Desktop Support - Works with CLI and desktop applications
Token Authentication - Secure API token validation
Available Tools
Options Chain (5 tools)
get_options_chain- Full options chain for any tickerget_expirations- Available expiration datesget_options_by_delta- Find options at specific deltaget_stock_price- Current price and company infocalculate_expected_move- Expected move from straddle pricing
Volatility Analysis (5 tools)
get_iv_rank- IV rank and percentileget_volatility_cone- IV vs historical realized volatilityget_volatility_risk_premium- VRP (IV minus RV)get_term_structure- IV across expirationsfind_iv_opportunities- Mean reversion opportunities
Greeks & GEX (5 tools)
get_gex- Gamma Exposure by strikeget_charm_exposure- Delta decay exposureget_third_order_greeks- Speed, zomma, color, vomma, ultimaget_greeks_heatmap- Greeks across strikes and expirationsget_cross_index_gex- Compare GEX across indices
Options Flow (3 tools)
get_options_flow- Flow and unusual activityget_smart_money_flow- Institutional flow patternsscan_volatility_arb- Cross-index volatility arbitrage
Strategy Building (3 tools)
build_strategy- Build options strategies (iron condor, spreads, etc.)analyze_strategy- Full P&L and Greeks analysisoptimize_strategy- Find optimal strikes
Risk Management (4 tools)
calculate_portfolio_greeks- Aggregate portfolio Greeksrun_scenario_analysis- What-if scenariosgenerate_stress_tests- Stress test resultsget_hedge_recommendations- Hedging suggestions
Events & Screening (4 tools)
get_earnings_calendar- Upcoming earningsanalyze_earnings_history- Historical earnings movesscreen_market- Market screening (high IV, unusual volume, etc.)get_market_overview- Market-wide volatility overview
Installation
Prerequisites
Python 3.10+
An ApexVol Pro subscription and an API token (see "Getting a Token" below)
Install the Package
pip install apexvol-mcpOr install from source:
cd apexvol-mcp
pip install -e .Configuration
Claude Code (CLI)
Add to your project's .mcp.json or global ~/.claude.json:
{
"mcpServers": {
"apexvol": {
"command": "apexvol-mcp",
"env": {
"APEXVOL_API_TOKEN": "avmcp_YOUR_TOKEN_HERE"
}
}
}
}Claude Desktop App
macOS: Edit ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: Edit %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"apexvol": {
"command": "apexvol-mcp",
"env": {
"APEXVOL_API_TOKEN": "avmcp_YOUR_TOKEN_HERE"
}
}
}
}Environment Variables
Variable | Required | Description |
| Yes | Your ApexVol API token |
| No | API URL (default: https://apexvol.com) |
Usage
After configuration, restart Claude Code or Claude Desktop to load the MCP server.
Example Queries
Volatility Analysis:
"What's the IV rank for AAPL?"
"Show me the volatility cone for SPY"
"Is there a volatility risk premium in TSLA?"
Options Chain:
"Get the options chain for QQQ expiring next week"
"Find a 30 delta put on NVDA"
"What's the expected move for AMZN earnings?"
Greeks & GEX:
"What's the gamma exposure for SPY?"
"Show me the GEX flip point for QQQ"
"Compare GEX across major indices"
Flow Analysis:
"What's the options flow in AAPL today?"
"Any unusual options activity in META?"
"Scan for volatility arbitrage opportunities"
Strategy Building:
"Build an iron condor on SPY"
"Analyze a 150/155 call spread on AAPL"
"What are the Greeks for selling a 200 put on NVDA?"
Risk Management:
"Calculate portfolio Greeks for 100 AAPL shares and 1 AAPL 200 call"
"Run a stress test on my positions"
"How should I hedge my delta exposure?"
Market Overview:
"What's the market overview today?"
"Show me stocks with high IV rank"
"What earnings are coming up this week?"
Response Format
All tools return structured data with a markdown summary:
{
"success": true,
"data": { ... },
"summary": "## AAPL IV Analysis\n\n| Metric | Value |\n...",
"metadata": {
"timestamp": "2025-01-08T10:30:00",
"ticker": "AAPL"
}
}Authentication
ApexVol MCP uses token-based authentication. Your token is sent with each API request to the ApexVol platform.
Token Format
Prefix:
avmcp_Length: 38 characters total
Getting a Token
API access requires an active Pro subscription and is currently invite-only. Request a token by emailing support@apexvol.com — tokens are issued by the ApexVol team. The token is sent with every request, so treat it like a password; contact support to rotate or revoke it if it leaks.
Troubleshooting
"Invalid or missing API token"
Verify your
APEXVOL_API_TOKENenvironment variable is set correctlyEnsure your token hasn't been revoked
Check that the token starts with
avmcp_
"Request timed out"
Check your internet connection
The ApexVol platform may be temporarily unavailable
MCP Server Not Loading
Restart Claude Code/Desktop after configuration changes
Check that
apexvol-mcpis in your PATHVerify the configuration JSON syntax is valid
Development
Running Locally
# Install in development mode
pip install -e ".[dev]"
# Run the server directly
python -m apexvol_mcp.serverRunning Tests
pytest tests/Support
For issues or questions:
Email: support@apexvol.com
Documentation: https://apexvol.com/docs/api
License
MIT — see the license field in pyproject.toml. The client wrapper is open
source; access to the ApexVol platform itself remains gated by your API token and
subscription.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ryansilk/apexvol-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server