Sponsored by Deepsite.site

Stormaxis Mcp

Created By
StormAxisa month ago
Real-time US storm intelligence for roofing and restoration contractors. Scored opportunities, property targeting, canvass routing, and FEMA claim data from live NOAA/SPC feeds.
Overview

StormAxis MCP Server

npm version MCP Compatible License: MIT API Status

Give your AI agent real-time US storm intelligence. StormAxis connects Claude, GPT, and any MCP-compatible agent to live NOAA storm data, scored contractor opportunities, property targeting lists, and canvass route optimization — purpose-built for roofing and restoration contractors.


What it does

StormAxis watches every storm in the United States in real time. When a qualifying hail or wind event hits, it automatically scores it (0–100) based on severity, local property values, roof age, and historical claim rates — then surfaces the best opportunities to your agent.

Your AI agent can:

  • Ask "What are the best storm opportunities in Texas right now?" and get a ranked list with estimated revenue
  • Pull a property target list for any ZIP code hit by a scored storm
  • Get H3-optimized canvass clusters so field crews know exactly where to knock doors first
  • Check insurance claim propensity by state before committing resources to a new market
  • Subscribe to webhooks that fire the moment a qualifying storm lands in your territory

Quickstart

1. Get a Partner API key

Sign up at stormaxis.io/partner. MCP access requires Growth tier ($199/mo) or above.

2. Add to Claude Code

claude mcp add stormaxis \
  --transport sse \
  --url https://stormaxis.io/api/mcp/sse \
  --header "X-API-Key: YOUR_API_KEY"

3. Make your first call

Ask Claude: "Check the StormAxis pipeline status."

You should see pipeline_active: true and a latest_event_time within the last 48 hours. You're live.


Alternative Setup Methods

Claude Desktop (via mcp-remote)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "stormaxis": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://stormaxis.io/api/mcp/sse"],
      "env": {
        "MCP_REMOTE_HEADER_X_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Standalone npm server (stdio)

npm install -g stormaxis-mcp

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "stormaxis": {
      "command": "stormaxis-mcp",
      "env": {
        "STORMAXIS_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Local development

git clone https://github.com/stormaxis/stormaxis-mcp
cd stormaxis-mcp
cp .env.example .env          # add your API key
npm install
npm run build
npm start

Tool Reference

Full mapping of MCP tools to their underlying Partner API endpoints.

MCP ToolREST EndpointTierKey ParametersDescription
get_storm_overviewGET /api/v1/partner/storm/overviewGrowthUS storm snapshot — counts by type, top states, SPC outlook
get_top_opportunitiesGET /api/v1/partner/opportunities/topGrowthstate? min_score? limit?Last 30 days of storms ranked by opportunity score (0–100)
get_storm_scoreGET /api/v1/partner/storm/{id}/scoreGrowthstorm_idFull composite score breakdown: storm relevance, property economics, replacement probability
search_propertiesGET /api/v1/partner/properties/{zip}Professionalzip_code owner_type? min_roof_age? min_sqft? limit?Owner + property records for door-knock targeting
get_canvass_clustersGET /api/v1/partner/clusters/{storm_id}Professionalstorm_id min_score? limit?H3 hexagonal canvass zones ranked by doors/hour × owner-occupancy
get_insurance_propensityGET /api/v1/partner/analytics/insurance-propensityGrowthstate?Claim culture score + avg payout per state
get_fema_claimsGET /api/v1/partner/fema/claimsProfessionalstate year_start? year_end?Historical NFIP flood claims aggregated by ZIP
get_pipeline_statusGET /api/v1/partner/pipeline/statusGrowthData freshness and ingestion health check

Score Components (get_storm_score)

ComponentWhat it measures
storm_relevance_scoreRecency, magnitude, NWS confirmation
property_economics_scoreAvg property value, roof age, density
replacement_probabilityML prediction of claim conversion likelihood

Prompts

The server ships two pre-built prompt templates that chain multiple tools into a single natural-language request:

PromptArgumentsDescription
storm_assessmentstate (default: TX)Full briefing: overview → top opportunities → score breakdown → property targeting
property_searchzip_code (default: 76109)Find older-roof properties in a ZIP with active storm context

Example Agent Workflows

Daily Sales Briefing

1. get_storm_overview           → What's active nationally?
2. get_top_opportunities        → Which markets rank highest today?
3. get_insurance_propensity     → Which states convert claims best?
4. get_storm_score(top_id)      → Deep-dive on #1 opportunity

Field Operations Planning

1. get_top_opportunities(state="TX")   → Identify top TX storm
2. get_canvass_clusters(storm_id)      → Get optimized zones
3. search_properties(zip_code)         → Pull door-knock list per zone

New Market Assessment

1. get_insurance_propensity(state)               → How claim-friendly is this state?
2. get_fema_claims(state)                        → Historical flood risk by ZIP
3. get_top_opportunities(state, min_score=50)    → Any current opportunities?

Pricing

TierPriceDaily API CallsMCP AccessTools AvailableWebhooks
SandboxFree100NoDashboard onlyNo
Growth$199/mo5,000Yesget_storm_overview, get_top_opportunities, get_storm_score, get_insurance_propensity, get_pipeline_statusNo
Professional$499/mo25,000YesAll 8 toolsNo
Enterprise$1,499+/mo100,000YesAll tools + Bulk ExportIncluded

Overage: $0.05–$0.08 per 1,000 calls on Growth and above.

Webhook Subscriptions (storm.scored, storm.gold, storm.updated, properties.available, pipeline.alert) are available on Enterprise tier and are included in the base price. See /docs/webhooks.md.


Error Reference

ErrorCause
Missing X-API-Key headerNo API key in request
Invalid or inactive API keyKey not found or revoked
API key expiredKey has passed expiration date
MCP access requires Growth tier or aboveSandbox key — upgrade at stormaxis.io/partner
Daily limit of N calls reachedRate limit hit — resets midnight UTC
Storm {id} not foundInvalid or expired storm ID
Database unavailableTransient backend error — retry with exponential backoff

Data Sources

SourceData TypeRefresh Frequency
NOAA/NWS Storm DataVerified storm eventsContinuous
SPC Convective OutlooksRisk forecastsEvery 15 minutes
MRMS (Multi-Radar Multi-Sensor)Hail size validationEvery 6 hours
US County Assessor RecordsProperty dataMonthly
FEMA NFIP ClaimsFlood insurance historyAnnual

Storm opportunity scores are recomputed every 6 hours as new events are confirmed.


Examples


Docs


Support

Server Config

{
  "mcpServers": {
    "stormaxis": {
      "transport": "streamable-http",
      "url": "https://stormaxis.io/api/mcp",
      "headers": {
        "X-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
Y GuiA web-based graphical interface for AI chat interactions with support for multiple AI models and MCP (Model Context Protocol) servers.
Tavily Mcp
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Playwright McpPlaywright MCP server
RedisA Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
WindsurfThe new purpose-built IDE to harness magic
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
CursorThe AI Code Editor
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Serper MCP ServerA Serper MCP Server
DeepChatYour AI Partner on Desktop
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
ChatWiseThe second fastest AI chatbot™
Amap Maps高德地图官方 MCP Server