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.
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.
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.
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.
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.
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.
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.
| 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 |
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.
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.
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.
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:
For comprehensive guidance, read our MCP Server Security Guide and complete the Security Fundamentals tutorial.
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.
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.
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.
Showing 24 of 192 servers, sorted by popularity.
Enhanced ChatGPT Clone: Features Agents, MCP, DeepSeek, Anthropic, AWS, OpenAI, Responses API, Azure, Groq, o1, GPT-5, Mistral, OpenRouter, Vertex AI, Gemini, Artifacts, AI model switching, message search, Code Interpreter, langchain, DALL-E-3, OpenA
manualProvides 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.
npmOpen-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📇 ☁️ - Manage Cloudflare Workers, KV, R2, Pages, DNS, and cache from your
npmA high-performance MCP server that provides BM25-ranked search and structured access to over 1,300 AI skills, enabling context-efficient discovery and usage of AI capabilities while minimizing token consumption.
manualA Model Context Protocol (MCP) server that provides safe, read-only access to Kubernetes resources for debugging and inspection. Built with security in mind, it offers comprehensive cluster visibility without modification capabilities.
npmAn MCP server that connects AI chatbots directly to data.gouv.fr, France’s national open data platform. It allows users to search, explore, and analyze thousands of public datasets simply by asking questions in natural language.
manualData API builder provides modern REST, GraphQL endpoints and MCP tools to your Azure Databases and on-prem stores.
manualFirst AI Journey for DevOps - with comprehensive learning paths, practical tips, and enterprise guidelines
manualComprehensive AWS services integration suite
pipLabs to explore AI Models, MCP servers, and Agents with the AI Gateway powered by Azure API Management and Microsoft Foundry 🚀
manualQuery, provision and operate Cloud and SaaS resources and APIs using an extensible SQL based framework
manualDebug your AI agents
manualUnify multiple MCP Servers & Skills into a single gateway — with proxy forwarding, authentication, and a management API. Typical use: expose local stdio servers as remote MCP endpoints, then use them in any web-based AI chat via a browser extension.
manualA secure MCP server example that demonstrates how to deploy to Google Cloud Run with authentication and identity token protection. Serves as a tutorial template for building production-ready MCP servers in the cloud.
npmEasily spin up an MCP Server on Next.js, Nuxt, Svelte, and more
npmA robust enterprise application sample (deployed on ACA) that leverages MCP and multiple AI agents orchestrated by Langchain.js, Llamaindex.TS and Microsoft Agent Framework.
manualDistributed Load Testing on AWS automates performance testing at scale, demonstrating how systems behave under different load conditions and helping identify potential performance issues throughout their lifecycle.
manualIAM Policy Autopilot is an open source static code analysis tool that helps you quickly create baseline AWS IAM policies that you can refine as your application evolves. This tool is available as a command-line utility and MCP server for use within A
manualA Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with your AWS environment. This allows for natural language querying and management of your AWS resources during conversations. Think of better Amazon Q alternat
npmAWS MCP Proxy Server
manualClaude Code plugins and agent skills for AWS development — CDK, serverless, cost ops, and Bedrock AgentCore
manualCreates a simple MCP tool server with 'streaming' HTTP.
manualNL2SQL - Ask questions in plain English, get SQL queries and results. Powered by LangGraph.
manualFind the best cloud services MCP servers for your preferred AI client.
Cloud Services servers for Claude Desktop
Cloud Services servers for Claude Code CLI
Cloud Services servers for Cursor
Cloud Services servers for VS Code / GitHub Copilot
Cloud Services servers for Windsurf
Cloud Services servers for Cline
Explore other types of MCP servers.
MCP servers for secure file operations, directory management, and document processing.
MCP servers for connecting AI assistants to SQL and NoSQL databases.
MCP servers that connect AI assistants to external APIs and web services.
MCP servers for software development workflows including version control, CI/CD, code analysis, browser testing, and project management.
MCP servers for monitoring, observability, and data analytics.
MCP servers for messaging, video conferencing, and team collaboration platforms.
MCP servers for CRM, e-commerce, project management, and business automation platforms.
MCP servers for browser automation, web testing, scraping, screenshot capture, and PDF generation.
MCP servers for web search, data extraction, and content retrieval.
MCP servers for persistent memory, knowledge graphs, vector databases, and context management.
MCP servers for financial services, payment processing, trading, and cryptocurrency.
MCP servers for security monitoring, authentication, vulnerability scanning, and compliance.
MCP servers for data science, machine learning, and scientific computing.
MCP servers for version control systems including Git, GitHub, and GitLab.
MCP servers for AI coding agents, code generation, task management, and automated testing.
MCP servers for marketing automation, SEO optimization, content management, and social media.
MCP servers for monitoring, observability, and logging.
Browse our complete directory, read setup guides for your editor, and start integrating MCP into your workflow today.