MCP Hub
Back to servers

curistat-mcp

Futures volatility intelligence MCP server for ES, NQ, and related products. Provides forecasts, regime detection, rare signals, and research tools for AI trading agents.

glama
Updated
Apr 10, 2026

Curistat MCP Server

MCP Server Glama PyPI License: MIT

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-mcp

2. 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"

Available Tools

Core Intelligence

ToolDescription
get_forecast_todayDaily volatility forecast (1-10 rating) with expected move ranges
get_forecast_week5-day forward volatility forecast
get_signalsScan all 24 rare volatility signals
get_directionDirectional bias (17-component aggregate)
get_session_planFull session planner with trade setups

Regime

ToolDescription
get_regimeCRC composite (0-100, 5 bands)
get_pulseMarket conditions snapshot

Research

ToolDescription
get_calendarEconomic calendar with vol impact estimates
get_event_impactHistorical vol analysis around specific events
get_similar_daysHistorical 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_mcp

The server communicates via stdio using the MCP protocol.

Environment Variables

VariableRequiredDefaultDescription
CURISTAT_API_KEYYes--Your Curistat Developer API key
CURISTAT_API_URLNohttps://api.curistat.comAPI 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.

TierRequests/minRequests/day
Free10100
Pro605,000
Agent12050,000

License

MIT

Reviews

No reviews yet

Sign in to write a review