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
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"
}
}
}
}
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)