Server Category

Best Cloud Services MCP Servers (2026)

MCP servers for managing cloud infrastructure across AWS, Google Cloud, Azure, and platforms like Vercel, Netlify, and Cloudflare. Deploy, monitor, and manage cloud resources through AI assistants.

Share:
2123 Servers
6 Compatible Clients

What Are Cloud Service MCP Servers?

Cloud service MCP servers bring infrastructure management to your AI assistant, enabling you to deploy applications, provision resources, monitor services, and manage cloud infrastructure through natural language commands. Instead of navigating complex cloud consoles or memorizing CLI commands, you can describe what you need and let the AI handle the execution. These servers support major cloud providers like AWS, Google Cloud, and Azure alongside modern deployment platforms like Vercel, Netlify, and Cloudflare, covering everything from virtual machines and serverless functions to edge computing and CDN management.

The Model Context Protocol provides the standardized interface that makes this possible. Cloud service MCP servers translate your natural language requests into the appropriate API calls for each provider, handling authentication, resource naming, region selection, and error recovery. This dramatically lowers the barrier to cloud operations and enables DevOps teams to move faster. This guide covers all available cloud service MCP servers, how to set them up in Claude Desktop and other clients, common deployment and infrastructure workflows, security best practices, and strategies for building end-to-end DevOps pipelines by combining cloud servers with other MCP integrations.

Available Cloud Service MCP Servers

AWS Labs MCP Server

The AWS Labs MCP server provides comprehensive access to Amazon Web Services, the world's largest cloud platform. It supports operations across core services including EC2, S3, Lambda, DynamoDB, RDS, CloudFormation, and more. Whether you are launching instances, managing S3 buckets, deploying Lambda functions, or querying CloudWatch metrics, this server brings AWS's vast ecosystem to your AI assistant. It uses your existing AWS credentials and respects IAM policies, ensuring operations stay within your defined security boundaries. For teams already using the AWS CLI, the MCP server provides a natural language layer on top of the same credential infrastructure you already trust.

Google Cloud Platform Server

The GCP MCP server connects AI assistants to Google Cloud Platform services including Compute Engine, Cloud Storage, BigQuery, Cloud Functions, and Kubernetes Engine. Google Cloud is particularly strong in data analytics and machine learning infrastructure, making this server valuable for teams that leverage BigQuery for data warehousing or GKE for container orchestration. Authentication uses standard GCP service accounts and application default credentials, so teams already authenticated through gcloud can start using the MCP server immediately.

Azure Server

The Azure MCP server provides access to Microsoft Azure's cloud services including Virtual Machines, Azure Functions, Cosmos DB, Azure Storage, and Azure DevOps. For organizations invested in the Microsoft ecosystem, this server enables natural language management of Azure resources alongside integration with tools like Visual Studio, GitHub Actions, and Microsoft 365. Azure's strong enterprise presence makes this server particularly valuable for large organizations with existing Microsoft agreements.

Vercel Server

The Vercel MCP server streamlines frontend and full-stack deployments on Vercel's edge platform. It supports project management, deployment triggering, environment variable configuration, domain management, and deployment log retrieval. For teams building with Next.js, Nuxt, SvelteKit, or other modern frameworks, this server makes deployment operations as simple as describing what you want to deploy. Preview deployments, production pushes, and rollbacks all become conversational operations.

Netlify Server

The Netlify MCP server provides access to Netlify's deployment and hosting platform. It supports site management, build triggering, deploy previews, form submissions, and serverless function management. Netlify is popular for JAMstack sites and static site generators like Gatsby, Hugo, and Eleventy. This server brings all management operations to your AI assistant, from triggering rebuilds to checking deploy logs.

Cloudflare Server

The Cloudflare MCP server connects to Cloudflare's edge computing and CDN platform. It supports DNS management, Workers deployment, Pages projects, cache purging, and security rule configuration. Cloudflare Workers provide a unique serverless platform running at the edge in over 300 data centers worldwide, and this server makes it easy to deploy and manage edge functions through natural language. It is also invaluable for DNS management, where a single misconfigured record can cause outages.

Comparing Cloud Service MCP Servers

Server Type Best For Auth Method
AWS Full cloud provider Enterprise infra, Lambda, S3 IAM / AWS profiles
GCP Full cloud provider BigQuery, GKE, ML Service accounts
Azure Full cloud provider Enterprise, Microsoft stack Azure CLI / service principal
Vercel Deployment platform Next.js, frontend deploys API token
Netlify Deployment platform JAMstack, static sites API token
Cloudflare Edge / CDN platform DNS, Workers, edge compute API token

Why Cloud Service MCP Servers Matter

Cloud infrastructure is inherently complex. Each provider has hundreds of services, thousands of configuration options, and constantly evolving APIs. Cloud MCP servers abstract this complexity, letting both experienced engineers and less technical team members perform cloud operations confidently. A developer can say "deploy the staging branch to a preview environment" instead of remembering the exact CLI commands. An SRE can ask "what is the CPU utilization of our production instances over the last hour?" instead of building CloudWatch dashboards from scratch.

These servers also reduce the risk of misconfigurations. The AI can validate inputs, suggest best practices, and warn about potentially dangerous operations before executing them. This is particularly valuable for cloud operations where a single mistake, like opening a security group to 0.0.0.0/0 or deleting a production database, can have severe consequences. Combined with Developer Tools servers, you get end-to-end deployment pipelines controlled through conversation.

For teams managing multi-cloud environments, running AWS, GCP, and Azure MCP servers simultaneously gives the AI a unified view across all your cloud providers. You can ask "compare the compute costs across our AWS and GCP accounts" or "are there any idle instances on any of our cloud providers?" and get a consolidated answer without logging into three separate consoles.

Common Use Cases

  • Application deployment: Deploy applications to Vercel, Netlify, or Cloudflare with a single natural language command. Preview deployments, roll back, and manage environment variables conversationally. Pair with the GitHub server to deploy directly from a specific branch or PR.
  • Infrastructure provisioning: Launch EC2 instances, create S3 buckets, or provision databases on AWS, GCP, or Azure through descriptive commands. Combine with Terraform for infrastructure-as-code workflows.
  • Cost monitoring: Query cloud spending, identify underutilized resources, and get recommendations for cost optimization across your cloud accounts. The AI can analyze usage patterns and suggest right-sizing recommendations.
  • Incident response: During outages, quickly query resource status, check logs, and scale services without switching between multiple cloud consoles. Combine with Grafana and Datadog for full-stack observability during incidents.
  • DNS and domain management: Configure DNS records, manage SSL certificates, and set up custom domains through the Cloudflare server. The AI validates record formats before applying changes.
  • Serverless function management: Deploy, test, and monitor Lambda functions, Cloud Functions, or Cloudflare Workers through natural language. Check invocation logs, update function code, and manage triggers.
  • Environment management: Create, clone, and tear down development and staging environments across Vercel or Netlify. Manage environment variables and feature flags per deployment.
  • Multi-cloud orchestration: Run servers for multiple cloud providers simultaneously to manage hybrid and multi-cloud architectures through a single conversational interface.

Getting Started

Cloud MCP servers use your existing cloud credentials. Here is how to get started with the Vercel server, one of the simplest cloud integrations:

# Install the Vercel MCP server
npm install -g @modelcontextprotocol/server-vercel

# Set your Vercel API token
export VERCEL_TOKEN="your-vercel-token"

# Run the server
npx @modelcontextprotocol/server-vercel

To configure the Vercel server in Claude Desktop, add it to your claude_desktop_config.json:

{
  "mcpServers": {
    "vercel": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-vercel"],
      "env": {
        "VERCEL_TOKEN": "your-vercel-token"
      }
    }
  }
}

For AWS, use your existing AWS profile and credentials:

{
  "mcpServers": {
    "aws": {
      "command": "npx",
      "args": ["-y", "@aws-labs/mcp-server"],
      "env": {
        "AWS_PROFILE": "your-profile",
        "AWS_REGION": "us-east-1"
      }
    }
  }
}

For Cloudflare, create an API token in the Cloudflare dashboard with the specific permissions you need:

{
  "mcpServers": {
    "cloudflare": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-cloudflare"],
      "env": {
        "CLOUDFLARE_API_TOKEN": "your-cloudflare-token"
      }
    }
  }
}

For detailed setup instructions for each cloud provider, check our First MCP Server tutorial. If you plan to run MCP servers in containers, our Docker Deployment tutorial covers containerized setups for all major cloud servers.

When to Use Cloud Service MCP Servers

Cloud MCP servers are the right choice in these key scenarios:

Deployment automation: If you deploy frequently to platforms like Vercel, Netlify, or Cloudflare, MCP servers turn multi-step deployment processes into single conversational commands. The AI handles environment variable management, build triggering, and deployment verification.

Infrastructure exploration: When you need to quickly understand the state of your cloud resources without navigating complex console UIs. Ask the AI "list all running EC2 instances in us-east-1" or "what are our current DNS records for example.com?" and get immediate answers.

DevOps workflows: Combine cloud servers with GitHub, Docker, Kubernetes, and Terraform for complete CI/CD pipelines managed through conversation. The AI can merge a PR, build a Docker image, push it to ECR, and update a Kubernetes deployment in a single interaction.

On-call and incident response: During production incidents, cloud MCP servers eliminate the time spent logging into consoles and navigating dashboards. An on-call engineer can ask "scale the API service to 10 replicas" or "show me the last 100 lines of Lambda function logs" directly from their AI assistant. Pair with Slack to coordinate incident response across the team.

Security Considerations

Cloud infrastructure MCP servers require careful security configuration because they can create, modify, and delete resources that cost money and affect production systems. Follow these best practices:

  • Least-privilege IAM: Create dedicated IAM roles or service accounts for MCP access with only the permissions needed for your specific workflow. For AWS, use IAM policies that restrict to specific services and resource ARNs. For GCP, use custom roles instead of primitive roles.
  • Separate production and development: Use different credentials and accounts for production versus development MCP access. This prevents accidental production changes during development conversations.
  • Read-only for monitoring: When you only need to query resource status, use read-only credentials. Most cloud providers support read-only IAM policies that prevent any resource modifications.
  • Audit logging: Enable cloud audit logs (CloudTrail for AWS, Cloud Audit Logs for GCP, Activity Log for Azure) to track all operations performed through MCP servers. This provides an audit trail for compliance and security investigations.
  • Token rotation: Regularly rotate API tokens for Vercel, Netlify, and Cloudflare. Set up automated rotation where possible.
  • Cost guardrails: Set up billing alerts and spending limits on your cloud accounts. While MCP servers do not bypass these controls, it is important to have safeguards against runaway resource provisioning.

For comprehensive guidance, read our MCP Server Security Guide and complete the Security Fundamentals tutorial.

Integration with Other MCP Servers

Cloud servers work best as part of a broader MCP ecosystem. Here are the most valuable integration patterns:

Combination Workflow
GitHub + Vercel Merge PR and deploy to preview in one conversation
Docker + AWS Build image, push to ECR, deploy to ECS
Terraform + GCP Plan infrastructure changes and verify in the cloud console
Grafana + AWS Monitor metrics and auto-scale based on thresholds
Slack + Cloud servers Deploy and notify the team in one conversation

Pair cloud servers with Developer Tools like GitHub, Docker, Kubernetes, and Terraform for complete CI/CD pipelines. Connect Analytics servers like Grafana and Datadog for observability alongside infrastructure management. Use Communication servers like Slack to receive deployment notifications. Add the Sentry server for error tracking that connects deployment events to error spikes.

To understand the full MCP ecosystem, start with our What is MCP? tutorial. For building custom cloud integrations, see Build Your First MCP Server in Python. IDE users should check our guide on MCP Servers for Cursor, VS Code, and Claude.

Advanced Patterns and Tips

Once you have cloud MCP servers running, consider these advanced patterns:

Multi-environment management: Run the same cloud MCP server with different credential profiles for development, staging, and production. The AI can compare configurations across environments and identify drift. For example, "compare the environment variables between our staging and production Vercel deployments" immediately surfaces configuration differences that could cause deployment issues.

Infrastructure-as-code generation: Use cloud MCP servers alongside the Terraform server and Filesystem server to generate Terraform configurations from existing cloud resources. The AI reads the current state of your infrastructure, generates the corresponding Terraform code, and writes it to your project. This is invaluable for teams migrating from console-managed infrastructure to infrastructure-as-code.

Cost optimization workflows: Combine AWS or GCP servers with the Sequential Thinking server to build structured cost analysis workflows. The AI can enumerate all your resources, check utilization metrics, identify underused instances, and generate a prioritized list of optimization recommendations with estimated savings.

Deployment verification: After deploying to Vercel or Netlify, use the Playwright or Puppeteer server to automatically verify that the deployment is working correctly by navigating to key pages and checking for expected content. This creates an automated smoke test that runs after every deployment.

Disaster recovery testing: Use cloud MCP servers to simulate disaster recovery scenarios. The AI can take snapshots of current resources, tear down components in a test environment, and verify that recovery procedures work correctly. Combined with the Memory server, the AI remembers the expected state and validates each step of the recovery process against documented procedures.

Infrastructure documentation: Combine cloud servers with the Filesystem server to automatically document your infrastructure. The AI queries each cloud provider for resource inventories, network configurations, and security group rules, then writes structured documentation to your project. Keep this documentation in sync by running the generation workflow regularly. Store the results in Notion or Confluence for team access.

Compliance auditing: Use cloud MCP servers to audit your infrastructure against security and compliance requirements. The AI can check that encryption is enabled on all storage buckets, verify that no security groups allow unrestricted inbound access, ensure that logging is enabled on all services, and generate a compliance report. This automated auditing catches misconfigurations that manual reviews often miss, especially in large multi-account environments.

To explore more servers that complement cloud operations, browse our Developer Tools, Analytics, and APIs categories.

Troubleshooting Cloud MCP Server Issues

The most common issue with cloud MCP servers is credential configuration. For AWS, ensure your AWS CLI is configured correctly and that the profile specified in the MCP configuration matches an existing profile in your ~/.aws/credentials file. For GCP, verify that application default credentials are set up by running gcloud auth application-default login. For platform-specific tokens (Vercel, Netlify, Cloudflare), check that the token has not expired and has the required permission scopes.

Region-specific errors are another common issue. Some cloud operations require specifying a region, and using the wrong region can cause "resource not found" errors. Always set the AWS_REGION environment variable when using the AWS server, and ensure it matches the region where your resources are deployed. For multi-region architectures, you may need to run multiple server instances with different region configurations.

Permission errors on Vercel and Netlify typically occur when the API token does not have access to the specific project or team you are trying to manage. Both platforms support team-scoped and project-scoped tokens. Ensure your token matches the scope of operations you intend to perform. For deployment operations, the token needs both read and write access to the project's deployment settings.

2123 Cloud Services MCP Servers

Showing 24 of 2123 servers, sorted by popularity.

Open Webui MCP Server

138.2k

User-friendly AI Interface (Supports Ollama, OpenAI API, ...)

manual

Anything Llm MCP Server

60.4k

The all-in-one AI productivity accelerator. On device and privacy first with no annoying setup or configuration.

manual

Localai MCP Server

46.4k

LocalAI is the open-source AI engine. Run any model - LLMs, vision, voice, image, video - on any hardware. No GPU required.

manual

Nacos MCP Server

33.0k

an easy-to-use dynamic service discovery, configuration and service management platform for building AI cloud native applications.

manual

Xiaozhi Esp32 MCP Server

26.7k

本项目为xiaozhi-esp32提供后端服务,帮助您快速搭建ESP32设备控制服务器。Backend service for xiaozhi-esp32, helps you quickly build an ESP32 device control server.

manual

Gateway MCP Server

11.8k

A blazing fast AI Gateway with integrated guardrails. Route to 1,600+ LLMs, 50+ AI Guardrails with 1 fast & friendly API.

npm

Nginx Ui MCP Server

11.2k

Yet another WebUI for Nginx

manual

AWS Nova Canvas

9.1k

Provides image generation capabilities using Amazon Nova Canvas through Amazon Bedrock, enabling the creation of visuals from text prompts and color palettes—perfect for mockups, diagrams, and UI design concepts.

npm

Webiny Js MCP Server

8.0k

Open-source, self-hosted CMS platform on AWS serverless (Lambda, DynamoDB, S3). TypeScript framework with multi-tenancy, lifecycle hooks, GraphQL API, and AI-assisted development via MCP server. Built for developers at large organizations.

npm

microsandbox

6.2k

<sup><sup>⭐</sup></sup> - Self-hosted platform for secure execution of AI code. Great for Code Interpreter, Data Analysis, Browser Use.

manual

Bifrost MCP Server

5.1k

Fastest enterprise AI gateway (50x faster than LiteLLM) with adaptive load balancer, cluster mode, guardrails, 1000+ models support & <100 µs overhead at 5k RPS.

manual

Omniroute MCP Server

5.1k

Never stop coding. Free AI gateway: one endpoint, 160+ providers (50+ free), connect Claude Code, Codex, Cursor, Cline & Copilot to FREE Claude/GPT/Gemini. RTK+Caveman stacked compression saves 15-95% tokens, smart auto-fallback, MCP/A2A, multimodal

npm

Gaianet Node MCP Server

5.0k

Install, run and deploy your own decentralized AI agent service

manual

Sandbox MCP Server

4.8k

All-in-One Sandbox for AI Agents that combines Browser, Shell, File, MCP and VSCode Server in a single Docker container.

manual

Rikkahub MCP Server

4.7k

RikkaHub is an Android APP that supports for multiple LLM providers.

manual

Olares MCP Server

4.5k

Olares: An Open-Source Personal Cloud to Reclaim Your Data

manual

Semantic Router MCP Server

4.2k

System Level Intelligent Router for Mixture-of-Models at Cloud, Data Center and Edge

manual

Lemonade MCP Server

4.1k

Lemonade helps users discover and run local AI apps by serving optimized LLMs right from their own GPUs and NPUs. Join our discord: https://discord.gg/5xXzkMu8Zk

manual

mcp-server-cloudflare

3.8k

📇 ☁️ - Manage Cloudflare Workers, KV, R2, Pages, DNS, and cache from your

npm

ContextForge MCP Gateway

3.8k

A feature-rich gateway and proxy that federates MCP, REST, and gRPC services into a unified endpoint for AI clients. It enables virtualization of legacy APIs as MCP-compliant tools while providing built-in security, rate-limiting, and OpenTelemetry o

manual

Mcp Context Forge MCP Server

3.7k

An AI Gateway, registry, and proxy that sits in front of any MCP, A2A, or REST/gRPC APIs, exposing a unified endpoint with centralized discovery, guardrails and management. Optimizes Agent & Tool calling, and supports plugins.

manual

Peopleinspace MCP Server

3.3k

Kotlin Multiplatform sample with SwiftUI, Jetpack Compose, Compose for Wear, Compose for Desktop, and Compose for Web clients along with Ktor backend.

manual

Py Xiaozhi MCP Server

3.3k

A Python-based Xiaozhi AI for users who want the full Xiaozhi experience without owning specialized hardware.

manual

Ha MCP Server

3.0k

Comprehensive Model Context Protocol server for managing Home Assistant through AI assistants.

pip

Related Categories

Explore other types of MCP servers.

File Systems

MCP servers for secure file operations, directory management, and document processing.

Databases

MCP servers for connecting AI assistants to SQL and NoSQL databases.

APIs

MCP servers that connect AI assistants to external APIs and web services.

Developer Tools

MCP servers for software development workflows including version control, CI/CD, code analysis, browser testing, and project management.

Analytics

MCP servers for monitoring, observability, and data analytics.

Communication

MCP servers for messaging, video conferencing, and team collaboration platforms.

Business Applications

MCP servers for CRM, e-commerce, project management, and business automation platforms.

Browser Automation

MCP servers for browser automation, web testing, scraping, screenshot capture, and PDF generation.

Search & Data Extraction

MCP servers for web search, data extraction, and content retrieval.

Knowledge & Memory

MCP servers for persistent memory, knowledge graphs, vector databases, and context management.

Finance & Fintech

MCP servers for financial services, payment processing, trading, and cryptocurrency.

Security

MCP servers for security monitoring, authentication, vulnerability scanning, and compliance.

Data Science & ML

MCP servers for data science, machine learning, and scientific computing.

Version Control

MCP servers for version control systems including Git, GitHub, and GitLab.

Coding Agents

MCP servers for AI coding agents, code generation, task management, and automated testing.

Marketing & SEO

MCP servers for marketing automation, SEO optimization, content management, and social media.

Monitoring & Observability

MCP servers for monitoring, observability, and logging.

Frequently Asked Questions

Ready to explore Cloud Services MCP servers?

Browse our complete directory, read setup guides for your editor, and start integrating MCP into your workflow today.

2123 Cloud Services ServersFree & Open SourceSetup GuidesSecurity Reviews