curistat-mcp
Integrates with CrewAI agents as volatility analysis tools, allowing AI analysts to access market forecasts, regime detection, rare signals, and research capabilities for futures trading intelligence.
Provides LangChain agents with volatility analytics tools for futures markets, including forecast generation, signal scanning, directional bias analysis, and historical market research capabilities.
Curistat MCP Server
Futures-specific volatility intelligence for AI agents via the Model Context Protocol.
The first MCP server dedicated to futures volatility analytics. Provides forecasts, regime detection, rare signals, directional bias, and research tools for ES, NQ, and related products.
Quick Start
1. Install
pip install curistat-mcp2. Get a Curistat API key
Sign up at curistat.com/developer and generate an API key.
3. Configure Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"curistat": {
"command": "python",
"args": ["-m", "curistat_mcp"],
"env": {
"CURISTAT_API_KEY": "cst_agent_your_key_here"
}
}
}
}Restart Claude Desktop. You can now ask Claude questions like:
"What's the volatility forecast for ES today?"
"Are there any rare signals firing for NQ?"
"Show me the economic calendar for next week"
"Find historical days similar to today for ES"
Related MCP server: BotSpot
Available Tools
Core Intelligence
Tool | Description |
| Daily volatility forecast (1-10 rating) with expected move ranges |
| 5-day forward volatility forecast |
| Scan all 24 rare volatility signals |
| Directional bias (17-component aggregate) |
| Full session planner with trade setups |
Regime
Tool | Description |
| CRC composite (0-100, 5 bands) |
| Market conditions snapshot |
Research
Tool | Description |
| Economic calendar with vol impact estimates |
| Historical vol analysis around specific events |
| Historical analog day lookup |
Supported Products
ES, NQ, MES, MNQ, SPX, SPY, QQQ
Agent Framework Integration
CrewAI
from crewai import Agent
from crewai_tools import MCPTool
curistat_tools = MCPTool(
server_command="python",
server_args=["-m", "curistat_mcp"],
server_env={"CURISTAT_API_KEY": "cst_agent_..."},
)
analyst = Agent(
role="Futures Volatility Analyst",
tools=[curistat_tools],
goal="Analyze market conditions and provide trading intelligence",
)LangChain
from langchain_mcp import MCPToolkit
toolkit = MCPToolkit(
server_command="python",
server_args=["-m", "curistat_mcp"],
server_env={"CURISTAT_API_KEY": "cst_agent_..."},
)
tools = toolkit.get_tools()Direct stdio (any MCP client)
CURISTAT_API_KEY=cst_agent_... python -m curistat_mcpThe server communicates via stdio using the MCP protocol.
Environment Variables
Variable | Required | Default | Description |
| Yes | -- | Your Curistat Developer API key |
| No |
| API base URL |
Rate Limits
Rate limits are enforced by your API key tier, not by the MCP server. The server is a thin client that proxies requests to the Curistat API.
Tier | Requests/min | Requests/day |
Free | 10 | 100 |
Pro | 60 | 5,000 |
Agent | 120 | 50,000 |
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- -license-quality-maintenanceReal-time financial market data MCP server. Stocks, crypto, technicals, sentiment, FDA calendar. No API keys required.Last updated
- Flicense-qualityDmaintenanceFull-lifecycle algorithmic trading MCP server. AI strategy generation from plain English, backtesting, live bot deployment to 10+ brokers, portfolio monitoring, and prediction markets. Stocks, options, crypto, futures. 32 tools. Free tier.Last updated

Aster MCP Serverofficial
Alicense-qualityFmaintenanceAn MCP server for Aster Futures and Spot APIs, enabling AI agents to query market data, place orders, and check positions and accounts securely.Last updated44MIT- Flicense-qualityBmaintenanceHere is a brief description of what our MCP server does: Description Project Tollbooth is a real-time market microstructure and options analytics gateway. It exposes quantitative Gamma Verdicts (hedging effects, dealer exposure aggregates, and volatility regimes) and 0DTE Verdicts (real-time pinning magnets, pin scores, and target probabilities) for major instruments (\*\*SPX,Last updated
Related MCP Connectors
Hosted MCP for stocks, options, Greeks, brokers, order previews, alerts, and workflows.
Validated trading edges across futures, equities, crypto. Live signals, full audit trail.
Agent-native crypto market-data over MCP+REST: order flow, whales, liquidations, calibrated scores
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/moxiespirit/curistat-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server