AI agents and coding assistants are revolutionizing how developers interact with cloud services, but granting them authenticated access to AWS has always been a challenge—until now. The AWS Model Context Protocol (MCP) Server has officially reached general availability, offering a managed remote server that enables AI agents to securely access all AWS services through a compact, fixed set of tools. This release marks a significant milestone for developers seeking to empower AI without compromising security or performance.
What Is the AWS MCP Server?
The AWS MCP Server is a core component of the Agent Toolkit for AWS, a suite designed to help AI coding agents build more effectively on AWS. It provides a standardized interface for agents to interact with AWS services using the Model Context Protocol (MCP), ensuring that all operations are authenticated and authorized via existing IAM credentials. This eliminates the need for agents to directly manage sensitive keys or permissions, reducing the risk of accidental exposure.

The Challenge AI Agents Face
AI coding agents often struggle when working with AWS at any meaningful depth. Common issues include:
- Outdated documentation: Agents rely on training data that may be months behind, missing new services like Amazon S3 Vectors, Aurora DSQL, or Bedrock AgentCore.
- Poor infrastructure choices: They tend to default to the AWS Command Line Interface (CLI) instead of more robust tools like the AWS Cloud Development Kit (CDK) or CloudFormation.
- Overly broad IAM policies: Generated policies often grant excessive permissions, leading to infrastructure that works in demos but isn't production-ready.
The AWS MCP Server addresses these challenges head-on by providing a fixed set of tools that consume minimal context window space and fetch real-time documentation.
Key Features of the General Availability Release
With the general availability launch, several new capabilities have been introduced to enhance security, efficiency, and flexibility.
IAM Context Keys for Fine-Grained Access
The MCP Server now supports IAM context keys, allowing you to express fine-grained access control directly in standard IAM policies—no separate permissions required. This simplifies management and strengthens security.
Simplified Documentation Retrieval
Retrieving current AWS documentation no longer requires authentication. Agents can instantly access up-to-date best practices and API references via the search_documentation and read_documentation tools, ensuring they always work with the latest information.
Token Efficiency for Complex Workflows
Token counts per interaction have been reduced, which is crucial for multi-step workflows where context window management is critical. This means agents can accomplish more without exceeding limits.

The Power of run_script: Sandboxed Python Execution
The standout addition is the run_script tool, which allows the agent to write and execute short Python scripts in a server-side sandboxed environment. This sandbox inherits your IAM permissions but has no network access, so you can give agents data processing capabilities without exposing your local file system or shell. For tasks that require chaining multiple API calls—like combining results from different services—the agent can do so in a single round-trip, drastically reducing latency and context consumption.
Example use cases for run_script include filtering large datasets, aggregating metrics, or performing simple computations that would otherwise require multiple API calls and burn through context tokens.
From Agent SOPs to Skills
A significant improvement in this release is the transition from Agent SOPs (Standard Operating Procedures) to Skills. Skills provide curated guidance and best practices for specific tasks, helping agents build more efficiently on AWS. This shift ensures that AI assistants have access to structured, reliable instructions rather than generic procedures, enabling them to deliver production-quality results.
Conclusion
The general availability of the AWS MCP Server represents a leap forward in secure, authenticated AI agent access to AWS. By addressing the core challenges of outdated documentation, poor tool selection, and over-permissioned policies, it empowers developers to build robust cloud applications with confidence. With features like IAM context keys, token-efficient operations, the run_script sandbox, and the new Skills system, the AWS MCP Server is poised to become an essential tool for any AI-driven development workflow on AWS.
To get started, explore the features outlined above and integrate the MCP Server into your agent toolkit today.