CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Cloud Regions

jasonwilbur/mcp-server-cloud-regions
STDIOregistry active
Summary

If you're planning multi-cloud deployments or need to answer questions like "which AWS regions have H100 GPUs?" or "find HIPAA-compliant regions in Europe," this gives Claude direct access to 267 regions across 14 providers including AWS, Azure, GCP, and OCI. It exposes tools for filtering by compliance certifications, finding nearby regions by coordinates, searching for GPU availability, and comparing provider coverage by geography. The data updates automatically from official provider sources and includes metadata like availability zones, sustainability metrics, and region types (commercial, government, sovereign, China). Query by location, compliance requirements, or infrastructure capabilities without context switching between provider documentation.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

mcp-server-cloud-regions

npm version npm downloads CI License: MIT MCP Registry

A Model Context Protocol (MCP) server providing comprehensive cloud region data across all major providers. Query, filter, and compare cloud infrastructure locations worldwide.

269 regions across 14 cloud providers — query by location, compliance, sustainability, and GPU availability.

Quick Start

With Claude Desktop

Add to your config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "cloud-regions": {
      "command": "npx",
      "args": ["-y", "mcp-server-cloud-regions"]
    }
  }
}

With Claude Code (CLI)

claude mcp add cloud-regions -- npx -y mcp-server-cloud-regions

Then ask Claude questions like:

  • "Which AWS regions have H100 GPUs?"
  • "Find HIPAA-compliant regions in Europe"
  • "What's the nearest cloud region to Tokyo with GPU support?"
  • "Compare cloud provider coverage in Germany"

Why This Exists

Planning multi-cloud deployments requires answering questions across providers:

  • "Which providers have regions in Germany with GDPR compliance?"
  • "What's the nearest GPU-enabled region to my users in São Paulo?"
  • "Which cloud has the most coverage in Asia Pacific?"
  • "Where can I deploy with carbon-neutral infrastructure?"
  • "Which regions support FedRAMP for government workloads?"

This MCP server provides a unified data model to answer these questions instantly.

Supported Providers

TierProviders
HyperscalersAWS, Azure, GCP, Oracle Cloud (OCI)
MajorDigitalOcean, Linode (Akamai), Vultr
SpecializedCrusoe (clean energy), CoreWeave (GPU), Lambda Labs (AI/ML), Paperspace (GPU/ML)
RegionalOVHcloud, Hetzner, Scaleway

Available Tools

Discovery

ToolDescription
list_regionsList all regions with filtering (provider, country, compliance, GPU, sustainability, region type)
get_regionGet detailed info for a specific region by ID (e.g., aws-us-east-1)
list_providersList all cloud providers with metadata and tier classification
get_provider_regionsGet all regions for a specific provider
search_regionsFull-text search across region names, cities, countries, and provider names

Geospatial

ToolDescription
find_nearby_regionsFind regions nearest to coordinates (for latency optimization)
list_countriesAll countries with cloud presence and region counts
list_citiesAll cities with data centers and which providers operate there

Specialized Queries

ToolDescription
find_compliant_regionsFilter by certifications (HIPAA, GDPR, FedRAMP, SOC2, PCI-DSS, etc.)
find_sustainable_regionsFind carbon-neutral data centers
find_gpu_regionsFind regions with GPU availability (A100, H100, TPU, etc.)
compare_provider_coverageCompare provider presence in a country or continent

Analytics & Metadata

ToolDescription
get_statisticsSummary stats: totals by provider, country, continent, capabilities
get_data_infoData freshness: last updated date, version, source URLs for each provider

Region Types

The server tracks different types of cloud regions:

TypeDescriptionExamples
commercialStandard public cloud regionsaws-us-east-1, azure-eastus
governmentGovernment-restricted regions (GovCloud, IL4+)aws-us-gov-west-1, azure-usgovvirginia
sovereignData sovereignty regions with separate control planesazure-germanynorth, oci-eu-frankfurt-2
chinaChina regions (separate operators/partitions)azure-chinaeast, aws-cn-north-1

Filter by region type using list_regions with the regionTypes parameter.

Example Queries

Find HIPAA-compliant regions in the US:

{
  "tool": "find_compliant_regions",
  "certifications": ["HIPAA"],
  "countryCodes": ["US"]
}

Find the 5 nearest GPU regions to London:

{
  "tool": "find_nearby_regions",
  "latitude": 51.5074,
  "longitude": -0.1278,
  "limit": 5,
  "hasGpu": true
}

List regions with 3+ availability zones:

{
  "tool": "list_regions",
  "minAvailabilityZones": 3
}

Compare European coverage across hyperscalers:

{
  "tool": "compare_provider_coverage",
  "continent": "europe"
}

Find government regions:

{
  "tool": "list_regions",
  "regionTypes": ["government", "sovereign"]
}

Check when data was last updated:

{
  "tool": "get_data_info"
}

Data Model

Each region includes:

{
  id: "aws-us-east-1",
  provider: "aws",
  regionCode: "us-east-1",
  displayName: "US East (N. Virginia)",
  regionType: "commercial",
  location: {
    country: "United States",
    countryCode: "US",
    city: "Ashburn",
    latitude: 39.0438,
    longitude: -77.4874,
    continent: "north-america"
  },
  availabilityZones: 6,
  launchedDate: "2006-08-25",
  status: "ga",
  compliance: ["SOC1", "SOC2", "HIPAA", "FedRAMP-Moderate", "PCI-DSS"],
  sustainability: {
    renewableEnergyPercent: 100,
    carbonNeutral: true
  },
  services: {
    compute: true,
    kubernetes: true,
    gpu: true,
    gpuTypes: ["NVIDIA A10G", "NVIDIA A100", "NVIDIA H100"]
  },
  sovereignty: {
    dataResidency: "US",
    dataResidencyGuarantee: true
  }
}

Data Updates

The server automatically fetches the latest region data from GitHub on startup, with fallback to bundled data if offline. Data is verified against official provider documentation:

  • AWS Regions
  • Azure Regions
  • GCP Regions
  • OCI Regions
  • DigitalOcean Datacenters

A weekly GitHub Action checks the provider pages for changes and opens an issue when an update may be needed; the region data is then refreshed and released by a maintainer (the dataset itself is curated, not auto-generated from the provider pages).

Use Cases

  • Multi-cloud strategy — Identify providers with presence in your target markets
  • Compliance planning — Find regions meeting regulatory requirements (HIPAA, GDPR, FedRAMP)
  • Latency optimization — Locate the nearest regions to your users
  • Sustainability goals — Deploy on carbon-neutral infrastructure
  • GPU/AI workloads — Find regions with specific accelerator availability
  • Disaster recovery — Plan geographically distributed deployments
  • Government workloads — Find GovCloud and sovereign regions

Installation

npm install mcp-server-cloud-regions

Or run directly with npx:

npx -y mcp-server-cloud-regions

Contributing

Contributions welcome! To add or update provider data:

  1. Edit provider metadata: src/data/providers.ts
  2. Edit region data: src/data/regions-*.ts
  3. Update metadata date: src/data/metadata.ts
  4. Run npm run build && npm run export-data
  5. Submit a pull request

Scripts

CommandDescription
npm run buildCompile TypeScript
npm run export-dataExport regions to data/regions.json
npm run check-updatesCheck if provider pages have changed

Disclaimer

This data is provided for informational purposes only. Cloud providers frequently add, modify, or deprecate regions and services. Users are responsible for verifying region availability, compliance certifications, and service offerings directly with each cloud provider before making deployment decisions.

While we strive to keep this data accurate and up-to-date, we make no guarantees about completeness or correctness. Always consult official provider documentation for production planning.

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Cloud & InfrastructureData & Analytics
Registryactive
Packagemcp-server-cloud-regions
TransportSTDIO
UpdatedJan 21, 2026
View on GitHub

Related Cloud & Infrastructure MCP Servers

View all →
K8s

silenceper/mcp-k8s

Provides Kubernetes resource management and Helm operations via MCP for easy automation and LLM integration.
145
Containerization Assist

azure/containerization-assist

TypeScript MCP server for AI-powered containerization workflows with Docker and Kubernetes support
41
AWS Builder

io.github.evozim/aws-builder

AWS CloudFormation and Terraform infrastructure blueprint builder.
Kubernetes

strowk/mcp-k8s-go

MCP server connecting to Kubernetes
381
Kubernetes

reza-gholizade/k8s-mcp-server

Provides a standardized MCP interface to interact with Kubernetes clusters, enabling resource management, metrics, logs, and events.
156
MCP Server Kubernetes

flux159/mcp-server-kubernetes

Provides unified Kubernetes management via MCP, enabling kubectl-like operations, Helm interactions, and observability.
1.4k