mcp
MCP ServerFreeOfficial MCP Servers for AWS
Capabilities12 decomposed
aws service tool exposure via standardized mcp protocol
Medium confidenceExposes 50+ AWS services (Lambda, DynamoDB, S3, CloudWatch, IAM, etc.) as callable tools through the Model Context Protocol, using a unified schema-based function registry that translates MCP tool definitions into AWS SDK calls. Each service gets a dedicated MCP server that implements the MCP specification's tools interface, allowing AI clients to discover and invoke AWS APIs with structured input/output validation without direct SDK knowledge.
Provides 50+ purpose-built MCP servers for AWS services rather than a single generic AWS API wrapper, with each server implementing domain-specific tool schemas and error handling patterns tailored to that service's workflows (e.g., Lambda server handles function invocation, versioning, and layer management as distinct tools)
More comprehensive AWS service coverage than generic MCP-to-REST bridges because each server is maintained by AWS and implements service-specific best practices, whereas generic tools require developers to manually map AWS API operations to tool schemas
infrastructure-as-code tool integration (terraform, cdk, cloudformation)
Medium confidenceProvides dedicated MCP servers for Terraform, AWS CDK, and CloudFormation that expose IaC operations as tools, enabling AI assistants to read, validate, plan, and apply infrastructure changes. The Terraform server parses HCL, the CDK server integrates with CDK CLI, and the CloudFormation server manages stack operations — each translating IaC-specific workflows into MCP tool schemas with structured input validation and change preview capabilities.
Implements three separate MCP servers (Terraform, CDK, CloudFormation) each with domain-specific tool schemas and validation logic, rather than a generic IaC abstraction layer, allowing service-specific features like Terraform plan JSON parsing and CDK construct introspection
Deeper integration with IaC toolchains than generic AWS API tools because each server understands the specific workflows and output formats of its target tool, enabling plan preview and validation without requiring the AI to parse raw CLI output
mcp server lifecycle management and process orchestration
Medium confidenceManages MCP server startup, shutdown, and communication through stdio, SSE (Server-Sent Events), or custom transports. The MCP host (client) spawns server processes, establishes bidirectional communication channels, handles connection lifecycle (initialization, heartbeats, graceful shutdown), and manages resource cleanup. This enables reliable server operation with automatic restart on failure and clean shutdown semantics.
Implements MCP protocol-level lifecycle management with support for multiple transport types (stdio, SSE, custom) and automatic connection handling, rather than requiring manual process management
More robust than manual process spawning because it handles connection lifecycle, error recovery, and resource cleanup automatically
aws documentation and developer reference access
Medium confidenceProvides an MCP server that exposes AWS documentation and developer guides as searchable resources, enabling AI assistants to reference official AWS documentation without external web searches. The server indexes AWS docs and enables semantic search over documentation content, allowing AI to provide accurate, up-to-date information about AWS services, APIs, and best practices.
Provides official AWS documentation as an MCP resource with semantic search capabilities, ensuring AI assistants reference authoritative sources rather than relying on training data or web search
More accurate than web search or training data because it uses official AWS documentation as the source of truth, reducing hallucinations and ensuring recommendations align with AWS best practices
database query and schema introspection (postgresql, dynamodb, neptune, memcached)
Medium confidenceExposes database query execution and schema discovery as MCP tools through dedicated servers for PostgreSQL, DynamoDB, Neptune (graph), and Memcached. The PostgreSQL server uses SQLAlchemy for connection pooling and query execution with result streaming, DynamoDB server translates query patterns into DynamoDB API calls with scan/query optimization, and Neptune server handles Gremlin/SPARQL query execution — each providing structured schema introspection tools that allow AI assistants to understand data models before generating queries.
Implements service-specific query optimization and schema introspection for each database type (e.g., DynamoDB server understands scan vs query trade-offs, Neptune server handles graph traversal patterns) rather than exposing generic SQL-like interfaces, enabling AI assistants to generate efficient queries without manual optimization hints
More intelligent query generation than generic database tools because each server understands its target database's query patterns and limitations, allowing the AI to make informed decisions about scan vs query, index usage, and result pagination
container and kubernetes orchestration (ecs, eks)
Medium confidenceExposes container management operations through dedicated MCP servers for ECS (task definition management, service scaling, container logs) and EKS (pod management, deployment operations, cluster introspection). The ECS server translates tool calls into ECS API operations with task lifecycle management, while the EKS server uses kubectl or Kubernetes Python client to manage workloads, enabling AI assistants to deploy, scale, and troubleshoot containerized applications without direct CLI knowledge.
Provides separate MCP servers for ECS and EKS with orchestration-specific tool schemas (ECS uses task definitions and services, EKS uses Kubernetes resources), rather than a generic container abstraction, enabling service-specific operations like ECS task placement strategies and EKS namespace isolation
More nuanced container management than generic cloud APIs because each server understands its orchestration platform's lifecycle models and state machines, allowing the AI to make informed decisions about deployment strategies and troubleshooting approaches
ai and machine learning service integration (bedrock, sagemaker, nova canvas)
Medium confidenceExposes AWS AI/ML services as MCP tools through dedicated servers: Bedrock server provides access to foundation models and knowledge base retrieval, SageMaker server enables notebook execution and model training/inference, Nova Canvas server handles image generation and editing. Each server translates tool calls into service-specific APIs with streaming support for long-running operations, allowing AI assistants to invoke other AI models, retrieve knowledge, and generate content without direct SDK calls.
Implements service-specific MCP servers for different AI/ML services (Bedrock for model invocation, SageMaker for training/inference, Nova Canvas for image generation) with streaming support for long-running operations, rather than a generic AI API wrapper, enabling service-specific features like Bedrock knowledge base retrieval and SageMaker notebook execution
More integrated AI/ML workflows than generic LLM APIs because each server understands its service's specific capabilities and limitations, allowing the AI to make informed decisions about model selection, knowledge base usage, and training job configuration
monitoring, logging, and observability tool access (cloudwatch, cloudtrail, cost explorer)
Medium confidenceExposes AWS monitoring and operational data as MCP tools through dedicated servers for CloudWatch (metrics, logs, alarms), CloudTrail (audit logs), and Cost Explorer (cost analysis). CloudWatch server provides metric queries and log insights execution, CloudTrail server enables audit log filtering and analysis, and Cost Explorer server translates cost queries into structured API calls — allowing AI assistants to analyze operational health, security events, and spending without manual dashboard navigation.
Implements separate MCP servers for different observability domains (CloudWatch for operational metrics/logs, CloudTrail for audit, Cost Explorer for financial) with domain-specific query patterns and result formats, rather than a generic AWS API tool, enabling service-specific analysis like CloudWatch Logs Insights syntax and CloudTrail event filtering
More actionable observability insights than generic metric APIs because each server understands its domain's query patterns and data models, allowing the AI to generate appropriate queries and interpret results in context-specific ways
identity and access management (iam) policy analysis and generation
Medium confidenceExposes IAM operations and policy analysis as MCP tools through a dedicated IAM server that can read existing policies, validate policy syntax, generate least-privilege policies, and simulate policy effects. The server uses IAM Policy Simulator API and policy document parsing to enable AI assistants to understand permission requirements, audit existing policies, and generate compliant IAM configurations without manual policy writing.
Implements IAM-specific policy analysis and generation using AWS IAM Policy Simulator and policy document parsing, rather than generic API access, enabling service-specific features like least-privilege policy generation and policy effect simulation
More security-aware policy generation than generic API tools because the server understands IAM policy syntax, permission models, and best practices, allowing the AI to generate compliant policies and identify security risks
messaging and workflow orchestration (sns, sqs, step functions)
Medium confidenceExposes message queue and workflow operations as MCP tools through dedicated servers for SNS (publish/subscribe), SQS (queue management), and Step Functions (workflow execution and monitoring). SNS server handles topic management and message publishing, SQS server manages queue operations and message retrieval, and Step Functions server enables workflow execution and state machine introspection — allowing AI assistants to orchestrate asynchronous workflows and integrate with event-driven architectures.
Implements separate MCP servers for different messaging/workflow patterns (SNS for pub/sub, SQS for queues, Step Functions for orchestration) with service-specific tool schemas, rather than a generic messaging abstraction, enabling service-specific features like SNS topic subscriptions and Step Functions state machine introspection
More sophisticated workflow orchestration than generic API tools because each server understands its service's specific patterns and semantics, allowing the AI to make informed decisions about message routing, queue selection, and workflow design
storage and data access (s3, s3 tables, kendra search)
Medium confidenceExposes object storage and search operations as MCP tools through dedicated servers for S3 (object operations, bucket management), S3 Tables (structured data queries), and Kendra (enterprise search). S3 server handles object upload/download/listing with metadata operations, S3 Tables server enables SQL-like queries on structured data, and Kendra server provides semantic search with document ranking — allowing AI assistants to access and search data without direct SDK knowledge.
Implements separate MCP servers for different storage/search patterns (S3 for object storage, S3 Tables for structured queries, Kendra for semantic search) with service-specific tool schemas and result formats, rather than a generic storage abstraction, enabling service-specific features like S3 object tagging and Kendra document ranking
More intelligent data access than generic storage APIs because each server understands its service's specific capabilities and limitations, allowing the AI to choose appropriate access patterns (object listing vs S3 Tables queries vs Kendra search) based on use case
mcp server discovery and capability introspection
Medium confidenceProvides mechanisms for MCP clients to discover available servers, introspect their exposed tools and resources, and understand tool schemas and capabilities. The MCP protocol defines initialization handshakes and tool listing endpoints that allow clients to query server metadata, tool definitions (with input/output schemas), and resource types — enabling dynamic client adaptation to available server capabilities without hardcoded tool knowledge.
Implements MCP protocol-level discovery mechanisms that allow clients to dynamically learn about server capabilities without prior knowledge, using standardized JSON Schema for tool definitions and capability flags for feature negotiation
More flexible than hardcoded tool lists because clients can adapt to any MCP server without modification, enabling ecosystem-wide tool discovery and composition
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with mcp, ranked by overlap. Discovered automatically through the match graph.
mcp
Official MCP Servers for AWS
AWS Core
** - Core AWS MCP server providing prompt understanding and server management capabilities.
Azure MCP Server
Provides Model Context Protocol (MCP) integration and tooling for Azure in Visual Studio Code.
AWS KB Retrieval
** - Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
Google Cloud Run
** - Official MCP Server to deploy to [Google Cloud Run](https://cloud.google.com/run).
AWS Nova Canvas
** - Generate images using Amazon Nova Canvas with text prompts and color guidance.
Best For
- ✓AI application developers building agents that need AWS resource access
- ✓DevOps teams automating infrastructure management through LLM interfaces
- ✓Enterprise teams standardizing AI tool access across multiple AWS services
- ✓Infrastructure engineers using AI to accelerate IaC development
- ✓Platform teams building AI-driven infrastructure automation
- ✓Organizations standardizing infrastructure changes through LLM-assisted workflows
- ✓MCP host/client developers building server management infrastructure
- ✓Application developers deploying MCP servers in production
Known Limitations
- ⚠Requires AWS credentials (IAM role or access keys) configured in the MCP server environment
- ⚠Tool discovery is limited to tools explicitly defined in each MCP server implementation — no dynamic AWS API introspection
- ⚠Latency includes MCP protocol overhead plus AWS API call time, typically 500ms-2s per operation
- ⚠No built-in request batching — each tool call results in a separate AWS API invocation
- ⚠Terraform server requires HCL parser and local Terraform binary — no remote state validation without explicit configuration
- ⚠CDK server is TypeScript/Python-specific — cannot manage CDK projects in other languages
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 22, 2026
About
Official MCP Servers for AWS
Categories
Alternatives to mcp
Are you the builder of mcp?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →