Interact with AWS services (EC2, S3, Lambda, etc)
Run the underlying MCP server directly — without Agent-CoreX routing.
npx -y @modelcontextprotocol/server-awsNote: Requires AWS credentials configured
AWS_ACCESS_KEY_IDRequiredAWS_SECRET_ACCESS_KEYRequiredAWS_REGIONOptionalAgent-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>"
}
}
}
}Connect in 2 minutes. Only pay for the tools your agent actually uses.
Recommended: intelligent tool routing, lower costs
uvx agent-corex mcp add awsAgent-CoreX selects only the tools your agent needs, cutting token usage by up to 60%.
Use AWS directly without routing
npx -y @modelcontextprotocol/server-awsNew to Agent-CoreX? View setup guide →