惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
爱范儿
爱范儿
量子位
Martin Fowler
Martin Fowler
V
V2EX
博客园 - 三生石上(FineUI控件)
I
InfoQ
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
Engineering at Meta
Engineering at Meta

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
AWS Just Made Its MCP Server Generally Available. Here's ...
Om Shree · 2026-05-25 · via DEV Community

The dirty secret of AI coding agents working on AWS has always been the credential problem: give the agent too much access and you've handed over the keys; give it too little and it's useless.
AWS just shipped its answer.

The Problem It's Solving

AI coding agents working with AWS have two compounding failure modes. First, their training data goes stale fast. Without access to current AWS documentation, agents rely on training data that may be months out of date and may not know about services like Amazon S3 Vectors, Amazon Aurora DSQL, or Amazon Bedrock AgentCore. Second, when they do reach for AWS tooling, their instincts are wrong: they tend to reach for the AWS CLI rather than AWS CDK or CloudFormation, and they produce IAM policies that are far broader than necessary. The result is infrastructure that clears a demo and breaks in production.

The deeper issue is structural. Before this release, connecting an AI agent to AWS meant either injecting broad credentials into a prompt context — a governance nightmare — or building custom middleware that quickly becomes a maintenance burden. Neither solution scales in an enterprise setting where audit trails and least-privilege access aren't optional.

How the AWS MCP Server Actually Works

The AWS MCP Server is now part of the recently announced Agent Toolkit for AWS, a set of tools, plugins, and workflows that help AI coding agents work with AWS services. The toolkit's open-source codebase is available on GitHub.

The server exposes a compact, fixed tool set rather than dumping the entire AWS surface area into the agent's context window. The call_aws tool covers all 15,000+ AWS API operations using existing IAM credentials. The search_documentation and read_documentation tools pull current AWS docs at query time, bypassing the model's knowledge cutoff entirely. And the newest addition, run_script, lets the agent execute short Python scripts server-side in a sandboxed environment — no local filesystem access, no shell, IAM permissions inherited but network-isolated.

When an agent needs to call multiple APIs and combine the results, making them one at a time is slow and burns context. With run_script, the agent chains API calls, filters responses, and computes results in a single round-trip, which is both faster and more context-efficient.

On authentication: the AWS MCP Server uses IAM and SigV4 authentication. As the MCP server currently supports only OAuth 2.1, local AWS credentials can be used through the open-source MCP Proxy for AWS, which runs locally and translates IAM-based authentication into OAuth-compatible requests. It's a thin bridge, not a workaround — the IAM trust model stays intact end-to-end.

The call_aws configuration for Claude Code is a single command:

claude mcp add-json aws-mcp --scope user \
   '{"command":"uvx","args":["mcp-proxy-for-aws@latest","https://aws-mcp.us-east-1.api.aws/mcp","--metadata","AWS_REGION=us-west-2"]}'

What Teams Are Actually Using It For

The stale-documentation problem is the most immediately visible win. AWS's own demo illustrates it cleanly: ask Claude Code (backed by Opus 4.6, knowledge cutoff May 2025) how to store embeddings on S3 without the MCP server, and you get five technically correct answers — none of which mention Amazon S3 Vectors, which launched in preview July 2025. Connect the MCP server, ask the same question, and the agent searches live AWS documentation and surfaces S3 Vectors directly.

Beyond documentation freshness, the enterprise governance story is significant. You can use IAM policies or Service Control Policies to specify that a given user can perform mutating operations while the MCP server is restricted to read-only actions. Amazon CloudWatch metrics published under the AWS-MCP namespace let you observe MCP server calls separately from direct human calls, giving you the audit trail that compliance teams require. Amazon CloudTrail captures all API calls for a complete record.

Documentation search and skill discovery can now be used without requiring AWS credentials — a deliberate decision to lower the barrier for read-only exploration without relaxing the security posture on mutating operations.

Why This Is a Bigger Deal Than It Looks

The Skills system — curated guidance and best practices for the tasks where agents most commonly make mistakes — is the part of this release that deserves more attention than it's getting. Skills are contributed and maintained by AWS service teams, which means the agent's guidance on IAM policy scoping, CDK patterns, or CloudFormation structure comes from the people who own those services, updated when those services change. That's a fundamentally different posture than baking best practices into a system prompt and hoping the model generalizes correctly.

The governance architecture also matters at an industry level. Darryl Ruggles, principal cloud solutions architect at Ciena, notes that the AWS MCP Server takes "a measured approach" to the long-standing tension between usefulness and safety in giving AI agents access to AWS. That measured approach — IAM context keys, CloudWatch namespacing, CloudTrail integration — is the kind of governance scaffolding that turns an interesting prototype into something a CISO will actually approve.

The open question raised by practitioners is fair: some question whether there are gateways to restrict certain actions or operations. Fine-grained operation-level blocking beyond standard IAM is still on the community's wishlist.

Availability and Access

The AWS MCP Server is currently available only in two regions, Northern Virginia and Frankfurt. It is free to use, although charges apply to the resources consumed by agents.

The MCP Server can be integrated with any AI agent that supports MCP, including Claude Code, Kiro, Cursor, and Codex. The full setup guide lives in the AWS MCP Server User Guide. You'll need uv installed (curl -LsSf https://astral.sh/uv/install.sh | sh) before wiring up the proxy.

The Agent Toolkit for AWS is the broader container this fits into — worth watching as AWS continues adding skills and plugins from individual service teams.

Every major cloud provider is now racing to become the default infrastructure layer for agentic AI. AWS isn't winning that race on documentation freshness alone — they're winning it by being the only provider that's built IAM governance directly into the MCP layer from day one.

Follow for more coverage on MCP, agentic AI, and AI infrastructure.