CuratedMCP
OpenAI Agents SDK
Free

How to Install AWS MCP Suite in OpenAI Agents SDK

Official AWS integration — DynamoDB, S3, Lambda, EC2, and the full AWS cloud via natural language

What AWS MCP Suite does

The official AWS MCP Suite gives AI agents structured, permission-aware access to AWS services. Instead of juggling SDK boilerplate and IAM policies manually, your agent can query and manage infrastructure through natural language. Included servers: - DynamoDB: Query tables, get items, run PartiQL, manage streams - S3: List buckets, upload/download objects, manage policies and lifecycle rules - Lambda: Invoke functions, view logs, manage environment variables, deploy packages - EC2: Describe instances, start/stop/terminate, manage security groups - RDS/Aurora: Query databases, manage snapshots, monitor performance - CloudWatch: Query logs, set alarms, view metrics dashboards - IAM: Manage roles, policies, and access analysis The suite uses your existing AWS credentials (IAM roles, profiles, or environment variables) — no additional auth setup required. Scoped permissions ensure your agent only accesses what it needs.

aws
amazon
s3
lambda
dynamodb

Installation steps

  1. 1Install: pip install openai-agents
  2. 2Copy the snippet below into your agent code
  3. 3Replace placeholder env values with your real keys
  4. 4Pass mcp_servers=[mcp_server] to your Agent()

Python snippet

Python snippetpython
from agents import Agent
from agents.mcp import MCPServerStdio

mcp_server = MCPServerStdio(
    command="npx",
    args=["-y", "@aws/mcp"],
    env={
        "AWS_ACCESS_KEY_ID": "AKIA...",
        "AWS_SECRET_ACCESS_KEY": "your_secret",
        "AWS_REGION": "us-east-1",
    },
)

agent = Agent(
    name="My Agent",
    model="gpt-4o",
    mcp_servers=[mcp_server],
)
Full server details Open Config Editor

Install in other clients

For maintainers

If you maintain AWS MCP Suite, add this badge to your README to show it's verified on CuratedMCP:

CuratedMCP Verified
[![CuratedMCP Verified](https://curatedmcp.com/api/badge/aws-mcp-suite)](https://curatedmcp.com/marketplace/aws-mcp-suite)