rank_markets
Rank data center markets by criteria like power cost, capacity, growth, or overall score. Filter by region and minimum capacity for top N markets.
Instructions
Use when a user wants "the top N markets for X" — one ranked list across the 300+ market set rather than N separate get_market_intel calls. Example: "What are the 10 fastest-growing US markets with at least 100MW of existing capacity?" — rank_markets criteria=fastest_growing region=us limit=10 min_capacity_mw=100. Params: criteria one of "cheapest_power" | "most_capacity" | "most_operators" | "fastest_growing" | "best_overall" (default best_overall); region one of "global" | "us" | "canada" | "eu" | "apac" | "americas" (default us); limit 1-50 (default 10); min_capacity_mw filter floor (e.g. 100). Returns: {criteria, region, markets:[{rank, slug, name, country, score, criterion_value, dcpi_verdict, attribution_url}], total_eligible, generated_at}. Do NOT use for a deep read on ONE market (use get_market_intel) or for scoring a specific lat/lon (use analyze_site).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of markets to return, 1-50 (default 10) | |
| region | No | Region scope: "global", "us" (default), "canada", "eu", "apac", or "americas" | |
| criteria | No | Ranking criterion: "cheapest_power", "most_capacity", "most_operators", "fastest_growing", or "best_overall" (default) | |
| min_capacity_mw | No | Minimum existing capacity filter in megawatts (MW), e.g. 100 |