DEV Community

Raph Moraes
Raph Moraes

Posted on

๐Ÿš€ Boost Your Cloud Dev Workflow with MCP Tools in Cursor + AWS Documentation Integration ๐Ÿ”๐Ÿ“˜

Just started using the AWS Documentation MCP Server inside Cursor IDE? Itโ€™s absolutely game-changing! ๐Ÿ˜

Imagine querying AWS best practices, code samples, or deployment recommendations directly from your IDE using natural languageโ€”and getting back curated, structured answers straight from the docs.

Hereโ€™s a quick example:

Please, tell me about AWS best practices recommendations to install ISTIO in Ambient Mode + Envoy per Node on EKS 1.32. Let me know if I should also dedicate node pools for ISTIO control plane services and the same for workloads, considering I'm going to use Envoy proxy per Node instead of sidecar.

Cursor called search_documentation from the AWS Documentation MCP server, and returned a comprehensive breakdown including:
โ€ข Istio Ambient Mode support on EKS (with CNI and health probe tuning)
โ€ข DaemonSet deployment for ztunnel (Envoy per node), no need for a dedicated node pool
โ€ข Control Plane Isolation: Yes, dedicate a node pool for istiod, ztunnel, and CNI
โ€ข Workload Isolation: Yes, use separate node pools for your applications
โ€ข Waypoint proxies (L7): Optional dedicated pool depending on traffic
โ€ข PodSecurity, IRSA, and network policy best practices
โ€ข Optionally isolate observability tools (Prometheus, Grafana) into a separate node pool

All of this came from a single query, instant context-aware guidance thatโ€™s production-ready.


Setup is simple:

Make sure you have uv installed:

pip3 install uv
Enter fullscreen mode Exit fullscreen mode

Then configure your MCP in ~/.cursor/mcp.json like so:

{
  "mcpServers": {
    "AWS Documentation": {
      "command": "uvx awslabs.aws-documentation-mcp-server@latest",
      "env": {
        "FASTMCP_LOG_LEVEL": "ERROR",
        "AWS_DOCUMENTATION_PARTITION": "aws"
      }
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Note: Cursorโ€™s built-in UI makes it super easy to connect and manage MCP servers. Just toggle the integration and youโ€™re good to go.

Why this matters:

As a DevOps/Platform Engineer, this accelerates cloud research, makes best practices discoverable, and integrates perfectly with your daily workflow.

If youโ€™re working with EKS, Terraform, or GitOps, this combo is a must-try.

Try it out to see how it goes!

Top comments (0)