MCP Directory
System

Interact with AWS services (EC2, S3, Lambda, etc)

Capabilities

deploymentfile management

Direct install

Run the underlying MCP server directly — without Agent-CoreX routing.

npx -y @modelcontextprotocol/server-aws

Note: Requires AWS credentials configured

Environment Variables

AWS_ACCESS_KEY_IDRequired
AWS_SECRET_ACCESS_KEYRequired
AWS_REGIONOptional

Use with Agent-CoreX

Agent-CoreX intelligently routes which tools from AWS your AI agent actually needs per request — reducing token usage and cost.

agent-corex.json

{
  "mcpServers": {
    "aws": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws"
      ],
      "env": {
        "AWS_ACCESS_KEY_ID": "<your-aws_access_key_id>",
        "AWS_SECRET_ACCESS_KEY": "<your-aws_secret_access_key>"
      }
    }
  }
}

Route AWS intelligently

Connect in 2 minutes. Only pay for the tools your agent actually uses.

Installation Guide

Use with Agent-CoreX

Recommended: intelligent tool routing, lower costs

uvx agent-corex mcp add aws

Agent-CoreX selects only the tools your agent needs, cutting token usage by up to 60%.

Direct Install

Use AWS directly without routing

npx -y @modelcontextprotocol/server-aws

New to Agent-CoreX? View setup guide →

AWS MCP Server — Agent-CoreX