Remote OpenClaw Blog
Best DevOps and Cloud MCP Servers in 2026
7 min read ·
The AWS MCP Servers monorepo from awslabs is the best DevOps and cloud MCP server in 2026, with 9,330 GitHub stars as of July 2026, the highest of any cloud infrastructure server in the Remote OpenClaw directory of 13,870 servers. It ships dozens of AWS-specific servers for documentation, CDK, cost analysis, and core services, so a single install gives your agent a full AWS toolbox. Below it sit five more picks covering Cloudflare, Azure, Kubernetes, Terraform, and Docker, ranked by GitHub stars and verified against each repository's README on July 4, 2026.
How We Ranked DevOps MCP Servers
DevOps MCP servers are ranked here by three verifiable signals: GitHub stars, maintenance activity, and whether the cloud vendor maintains the server officially. All three were checked against each repository on July 4, 2026, using the Remote OpenClaw Cloud & DevOps directory as the source list.
Official status carries extra weight in this category. A DevOps server holds keys to live infrastructure, so a repo maintained by AWS, Cloudflare, Microsoft, or HashiCorp is generally safer to wire into a production pipeline than a community fork with the same star count. We picked one winner per major platform rather than stacking six Kubernetes tools, so the list doubles as a starter kit for a full cloud stack. For the broader cloud roundup, see our cloud infrastructure MCP guide.
The 6 Best DevOps and Cloud MCP Servers in 2026
These six servers cover AWS, Cloudflare, Azure, Kubernetes, Terraform, and Docker. Install commands were verified against each repo's README in July 2026 and use the claude mcp add syntax for Claude Code.
1. AWS MCP Servers - the full AWS toolbox
The awslabs/mcp monorepo (9,330 stars) is the official collection of AWS MCP servers, covering AWS documentation, CDK and Terraform infrastructure, cost analysis, and core service access. Each server publishes to PyPI and runs with your existing AWS credentials, so no separate API key is needed. Start with the core server and add the specialized ones you need. Directory page: awslabs/mcp.
claude mcp add awslabs-core -- uvx awslabs.core-mcp-server@latest
2. Cloudflare MCP - edge, Workers, and observability
The official Cloudflare MCP collection (3,890 stars) exposes more than a dozen remote servers for Workers bindings, observability, DNS, browser rendering, and documentation. Cloudflare hosts each one as a remote endpoint that connects over OAuth, so there is nothing to run locally. Directory page: cloudflare/mcp-server-cloudflare.
claude mcp add --transport http cloudflare-docs https://docs.mcp.cloudflare.com/mcp
3. Azure MCP Server - Microsoft cloud
Microsoft's Azure MCP Server (3,361 stars, hosted in the microsoft/mcp monorepo) gives agents access to Azure resources, the Azure CLI, storage, databases, and monitoring. It runs through the @azure/mcp npm package and authenticates with your existing Azure login. Note that the older Azure/azure-mcp repository is now archived and redirects here. Directory page: microsoft/mcp.
claude mcp add azure -- npx -y @azure/mcp@latest server start
4. Kubernetes MCP Server - cluster operations
The Kubernetes MCP Server (1,717 stars) lets agents list, inspect, and manage pods, deployments, and services across any cluster in your kubeconfig, distributed as a native Go binary plus npm and Python packages. A popular community alternative is Flux159/mcp-server-kubernetes (1,443 stars). Directory page: containers/kubernetes-mcp-server.
claude mcp add kubernetes -- npx -y kubernetes-mcp-server@latest
5. Terraform MCP - infrastructure as code
HashiCorp's official Terraform MCP Server (1,446 stars) connects agents to the Terraform Registry so they can look up providers, modules, and resource schemas while writing infrastructure as code. It runs as a Docker container, which keeps the toolchain isolated from your host. Directory page: hashicorp/terraform-mcp-server.
claude mcp add terraform -- docker run -i --rm docker.io/hashicorp/terraform-mcp-server:0.3.2
6. Docker MCP - containers and images
The community Docker MCP Server (724 stars) lets agents manage containers, images, volumes, and networks through the Docker socket, which is handy for building, inspecting, and cleaning up local environments. It installs from PyPI with uvx and needs no API key. Directory page: ckreiling/mcp-server-docker.
claude mcp add docker -- uvx mcp-server-docker
Comparison Table: DevOps MCP Servers at a Glance
The table below compares all six picks on stars, maintainer, and hosting model, with star counts current as of July 4, 2026.
| Rank | Server | Best for | Stars (Jul 2026) | Maintainer | Runs |
|---|---|---|---|---|---|
| 1 | AWS MCP Servers | AWS platform | 9,330 | AWS (official) | Local (uvx) |
| 2 | Cloudflare MCP | Edge and Workers | 3,890 | Cloudflare (official) | Remote (OAuth) |
| 3 | Azure MCP Server | Microsoft Azure | 3,361 | Microsoft (official) | Local (npx) |
| 4 | Kubernetes MCP | Cluster ops | 1,717 | Community | Local (npx) |
| 5 | Terraform MCP | Infra as code | 1,446 | HashiCorp (official) | Docker |
| 6 | Docker MCP | Containers | 724 | Community | Local (uvx) |
Browse the Cloud & DevOps Category
The Remote OpenClaw directory groups 721 servers into the Cloud & DevOps category, each with its own detail page showing stars, transport, and the exact install command. If your stack spans more than infrastructure, three adjacent hubs round out a full agent toolbox: databases, observability, and the overall best-of list.
- Best MCP servers for database management for Postgres, MySQL, and more
- Best MCP servers for monitoring and observability for Grafana, Prometheus, and logs
- Best MCP servers in 2026, the complete ranked list across every category
You can also package your own DevOps automation as reusable agent skills and list them on the Remote OpenClaw marketplace.
Limitations and Tradeoffs
DevOps MCP servers carry more risk than most because they hold credentials to live infrastructure, so the biggest tradeoff is blast radius rather than features. A misfired tool call can delete a Kubernetes namespace, tear down a Terraform-managed resource, or rack up cloud spend, so start every server with read-only or tightly scoped credentials and only widen access once you trust the workflow. Our guide on securing MCP server connections covers token scoping and read-only modes.
Community servers like the Docker and Kubernetes picks run with your local permissions and update on volunteer time, so pin versions and review the source before production use. Official vendor servers are safer to trust but often lag the newest platform features by a release or two. Stars are a popularity signal, not a guarantee of quality, which is why the table pairs them with maintainer status.
Related Guides
- Best MCP Servers for Cloud Infrastructure in 2026
- Best MCP Servers in 2026: The Complete Ranked List
- Best MCP Servers for Monitoring and Observability
- Claude Code MCP: How to Add and Manage MCP Servers
Go deeper
The operator playbooks
Production-ready PDF guides for OpenClaw and Hermes Agent — $19.99 each.
Skills for this topic
Browse all skills →Frequently Asked Questions
What is the best DevOps MCP server in 2026?
The AWS MCP Servers monorepo from awslabs is the best DevOps MCP server in 2026, with 9,330 GitHub stars as of July 2026 and official AWS maintenance. It bundles dozens of AWS-specific servers into one install. The best pick for your stack depends on your cloud: Cloudflare MCP leads for edge and Workers, and the Terraform MCP Server leads for
Is there an official MCP server for Kubernetes?
There is no single vendor-official Kubernetes MCP server, but the community containers/kubernetes-mcp-server (1,717 stars) is the most-starred option and ships as a native Go binary. It manages pods, deployments, and services across any cluster in your kubeconfig. Install it with claude mcp add kubernetes -- npx -y kubernetes-mcp-server@latest .
Can an MCP server deploy to AWS or Azure?
Yes. The AWS and Azure MCP servers can create and modify cloud resources when given credentials with write access, which is why you should start them with read-only or scoped permissions. Both authenticate with your existing cloud login rather than a separate API key, so the server inherits whatever your credentials allow.
Are DevOps MCP servers safe to use in production?
DevOps MCP servers are safe when scoped correctly, but they are higher-risk than most because they touch live infrastructure. Use read-only tokens, pin container and package versions, review community server source code, and prefer vendor-official servers for production pipelines. See our MCP security guide for token scoping.
How do I add a DevOps MCP server to Claude Code?
Run claude mcp add <name> -- <command> for local servers, for example claude mcp add docker -- uvx mcp-server-docker , or claude mcp add --transport http <name> <url> for remote ones like Cloudflare. Our Claude Code MCP guide walks through scopes, environment variables, and troubleshooting.





