Labsco
awslabs logo

AWS MCP Servers

βœ“ Officialβ˜… 9,400

from awslabs

Access AWS documentation, best practices, and service integrations via the Model Context Protocol.

πŸ”₯πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedAccount requiredNeeds API keys

Open source MCP servers for AWS

A suite of specialized MCP servers that help you get the most out of AWS, wherever you use MCP.

[!TIP] The Agent Toolkit for AWS is now live! The Agent Toolkit for AWS is the successor to the MCP servers, plugins, and skills available on AWS Labs, and was informed by feedback from customers like you. If you're building production software using coding agents or building agents for your own customers, we recommend Agent Toolkit for AWS. It includes IAM condition keys to distinguish agent actions from human ones, CloudWatch and CloudTrail visibility, and skills that have been evaluated for accuracy and effectiveness. This repo continues to work and accept contributions. Over time, the most useful projects here will move into Agent Toolkit for AWS.

Table of Contents

  • Open source MCP servers for AWS

  • Table of Contents

  • What is the Model Context Protocol (MCP) and how does it work with MCP Servers for AWS?

  • Open source MCP servers for AWS Transport Mechanisms

  • Supported transport mechanisms

  • Server Sent Events Support Removal

  • Why MCP Servers for AWS?

  • Available MCP Servers: Quick Installation

  • πŸš€ Getting Started with AWS

  • Browse by What You're Building

  • πŸ“š Real-time access to official AWS documentation

  • πŸ—οΈ Infrastructure & Deployment

  • Container Platforms

  • Serverless & Functions

  • Support

  • πŸ€– AI & Machine Learning

  • πŸ“Š Data & Analytics

  • SQL & NoSQL Databases

  • Search & Analytics

  • Backend API Providers

  • Caching & Performance

  • πŸ› οΈ Developer Tools & Support

  • πŸ“‘ Integration & Messaging

  • πŸ’° Cost & Operations

  • 🧬 Healthcare & Lifesciences

  • Browse by How You're Working

  • πŸ‘¨β€πŸ’» Vibe Coding & Development

  • Core Development Workflow

  • Infrastructure as Code

  • Application Development

  • Container & Serverless Development

  • Testing & Data

  • Lifesciences Workflow Development

  • Healthcare Data Management

  • πŸ’¬ Conversational Assistants

  • Knowledge & Search

  • Content Processing & Generation

  • Business Services

  • πŸ€– Autonomous Background Agents

  • Data Operations & ETL

  • Caching & Performance

  • Workflow & Integration

  • Operations & Monitoring

  • MCP AWS Lambda Handler Module

  • When to use Local vs Remote MCP Servers?

  • Local MCP Servers

  • Remote MCP Servers

  • Use Cases for the Servers

  • Installation and Setup

  • For macOS/Linux

  • For Windows

  • Running MCP servers in containers

  • Getting Started with Kiro

  • ~/.kiro/settings/mcp.json

  • Getting Started with Cline and Amazon Bedrock

  • cline_mcp_settings.json

  • Getting Started with Cursor

  • .cursor/mcp.json

  • Getting Started with Windsurf

  • ~/.codeium/windsurf/mcp_config.json

  • Getting Started with VS Code

  • .vscode/mcp.json

  • Getting Started with Claude Code

  • .mcp.json

  • Samples

  • Vibe coding

  • Additional Resources

  • Security

  • Contributing

  • Developer guide

  • License

  • Disclaimer

What is the Model Context Protocol (MCP) and how does it work with MCP Servers for AWS?

The Model Context Protocol (MCP) is an open protocol that enables seamless integration between LLM applications and external data sources and tools. Whether you're building an AI-powered IDE, enhancing a chat interface, or creating custom AI workflows, MCP provides a standardized way to connect LLMs with the context they need.

β€” Model Context Protocol README

An MCP Server is a lightweight program that exposes specific capabilities through the standardized Model Context Protocol. Host applications (such as chatbots, IDEs, and other AI tools) have MCP clients that maintain 1:1 connections with MCP servers. Common MCP clients include agentic AI coding assistants (like Kiro, Cline, Cursor, Windsurf) as well as chatbot applications like Claude Desktop, with more clients coming soon. MCP servers can access local data sources and remote services to provide additional context that improves the generated outputs from the models.

MCP Servers for AWS use this protocol to provide AI applications access to AWS documentation, contextual guidance, and best practices. Through the standardized MCP client-server architecture, AWS capabilities become an intelligent extension of your development environment or AI application.

MCP Servers for AWS enable enhanced cloud-native development, infrastructure management, and development workflowsβ€”making AI-assisted cloud computing more accessible and efficient.

The Model Context Protocol is an open source project run by Anthropic, PBC. and open to contributions from the entire community. For more information on MCP, you can find further documentation here

Open source MCP servers for AWS Transport Mechanisms

Supported transport mechanisms

The MCP protocol currently defines two standard transport mechanisms for client-server communication:

  • stdio, communication over standard in and standard out

  • streamable HTTP

The MCP servers in this repository are designed to support stdio only.

You are responsible for ensuring that your use of these servers comply with the terms governing them, and any laws, rules, regulations, policies, or standards that apply to you.

Server Sent Events Support Removal

Important Notice: On May 26th, 2025, Server Sent Events (SSE) support was removed from all MCP servers in their latest major versions. This change aligns with the Model Context Protocol specification's backwards compatibility guidelines.

We are actively working towards supporting Streamable HTTP, which will provide improved transport capabilities for future versions.

For applications still requiring SSE support, please use the previous major version of the respective MCP server until you can migrate to alternative transport methods.

Why MCP Servers for AWS?

MCP servers enhance the capabilities of foundation models (FMs) in several key ways:

Improved Output Quality: By providing relevant information directly in the model's context, MCP servers significantly improve model responses for specialized domains like AWS services. This approach reduces hallucinations, provides more accurate technical details, enables more precise code generation, and ensures recommendations align with current AWS best practices and service capabilities.

Access to Latest Documentation: FMs may not have knowledge of recent releases, APIs, or SDKs. MCP servers bridge this gap by pulling in up-to-date documentation, ensuring your AI assistant always works with the latest AWS capabilities.

Workflow Automation: MCP servers convert common workflows into tools that foundation models can use directly. Whether it's CDK, Terraform, or other AWS-specific workflows, these tools enable AI assistants to perform complex tasks with greater accuracy and efficiency.

Specialized Domain Knowledge: MCP servers provide deep, contextual knowledge about AWS services that might not be fully represented in foundation models' training data, enabling more accurate and helpful responses for cloud development tasks.

MCP AWS Lambda Handler Module

A Python library for creating serverless HTTP handlers for the Model Context Protocol (MCP) using AWS Lambda. This module provides a flexible framework for building MCP HTTP endpoints with pluggable session management, including built-in DynamoDB support.

Features:

  • Easy serverless MCP HTTP handler creation using AWS Lambda

  • Pluggable session management system

  • Built-in DynamoDB session backend support

  • Customizable authentication and authorization

  • Example implementations and tests

See src/mcp-lambda-handler/README.md for full usage, installation, and development instructions.

When to use Local vs Remote MCP Servers?

MCP servers can be run either locally on your development machine or remotely on the cloud. Here's when to use each approach:

Local MCP Servers

  • Development & Testing: Perfect for local development, testing, and debugging

  • Offline Work: Continue working when internet connectivity is limited

  • Data Privacy: Keep sensitive data and credentials on your local machine

  • Low Latency: Minimal network overhead for faster response times

  • Resource Control: Direct control over server resources and configuration

Remote MCP Servers

  • Team Collaboration: Share consistent server configurations across your team

  • Resource Intensive Tasks: Offload heavy processing to dedicated cloud resources

  • Always Available: Access your MCP servers from anywhere, any device

  • Automatic Updates: Get the latest features and security patches automatically

  • Scalability: Easily handle varying workloads without local resource constraints

  • Security: Centralized security controls with IAM-based permissions and zero credential exposure

  • Governance: Comprehensive audit logging and compliance monitoring for enterprise-grade governance

Note: Some MCP servers, like the official AWS MCP server (in preview) and AWS Knowledge MCP, are provided as fully managed services by AWS. These AWS-managed remote servers require no setup or infrastructure management on your part - just connect and start using them.

Use Cases for the Servers

For example, you can use the AWS Documentation MCP Server to help your AI assistant research and generate up-to-date code for any AWS service, like Amazon Bedrock Inline agents. Alternatively, you could use the CDK MCP Server or the Terraform MCP Server to have your AI assistant create infrastructure-as-code implementations that use the latest APIs and follow AWS best practices. With the AWS Pricing MCP Server, you could ask "What would be the estimated monthly cost for this CDK project before I deploy it?" or "Can you help me understand the potential AWS service expenses for this infrastructure design?" and receive detailed cost estimations and budget planning insights. The Valkey MCP Server enables natural language interaction with Valkey data stores, allowing AI assistants to efficiently manage data operations through a simple conversational interface.

Samples

Ready-to-use examples of open source MCP servers for AWS in action are available in the samples directory. These samples provide working code and step-by-step guides to help you get started with each MCP server.

Vibe coding

You can use these MCP servers with your AI coding assistant to vibe code. For tips and tricks on how to improve your vibe coding experience, please refer to our guide.

Additional Resources

Security

See CONTRIBUTING for more information.

Contributing

Big shout out to our awesome contributors! Thank you for making this project better!

Contributions of all kinds are welcome! Check out our contributor guide for more information.

Developer guide

If you want to add a new MCP Server to the library, check out our development guide and be sure to follow our design guidelines.

License

This project is licensed under the Apache-2.0 License.

Disclaimer

Before using an MCP Server, you should consider conducting your own independent assessment to ensure that your use would comply with your own specific security and quality control practices and standards, as well as the laws, rules, and regulations that govern you and your content.