AIAny
Icon for item

Open source MCP servers for AWS (mcp)

Exposes AWS services to AI agents over the Model Context Protocol — querying databases, provisioning infrastructure with CDK/EKS/Lambda, and pulling live AWS docs. Each domain ships as its own server, so agents wire in only what a task needs.

Introduction

The bottleneck for AI agents on AWS was never reasoning — it was access. An agent that can write a CDK stack but can't read your live account state, or query a Bedrock knowledge base but not your DynamoDB tables, stalls at the boundary between code and infrastructure. This repo's answer is breadth as a design choice: instead of one monolithic AWS connector, it ships dozens of narrowly-scoped MCP servers, each owning a single service domain, so an agent's tool surface matches exactly the AWS footprint of the task.

What Sets It Apart
  • Coverage spans the whole stack — databases (DynamoDB, Aurora Postgres/MySQL/DSQL, DocumentDB, Neptune, Redshift, Timestream), compute and IaC (CDK, EKS, ECS, Lambda, serverless), and AI services (Bedrock KB, Kendra, SageMaker, Amazon Q) — rather than one service in depth.
  • The per-server split means you install only the domains you grant, which doubles as a blast-radius control: a documentation server can't touch your production database.
  • First-party provenance matters here — these track real AWS APIs and ship official docs/knowledge servers, so an agent answers from current AWS material instead of a stale training cutoff.
适合谁

Great fit if you are building agents or IDE assistants that operate against real AWS accounts and want vetted, service-accurate tools instead of hand-rolled API wrappers. Look elsewhere if you run on another cloud, or if you want a single drop-in connector — the modular design means you assemble and configure servers per use case, and IAM scoping is on you.

Information

  • Websitegithub.com
  • OrganizationsAmazon Web Services (AWS)
  • AuthorsAWS Labs (awslabs) / Amazon Web Services
  • Published date2025/03/21

Categories

More Items

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).

GitHub

Runs a self-hosted meeting bot and transcription API that joins Google Meet, Teams and Zoom and streams speaker-attributed transcripts in real time. Compiles meetings into a git-backed Markdown workspace and runs sandboxed agents on your infrastructure; Apache-2.0 and air-gap capable.

GitHub

Lets AI agents produce expressive, polished charts from compact, human-editable semantic specs; the compiler infers layout, scales, and labels and emits Vega-Lite, ECharts, or Chart.js outputs, with an MCP server for agent-driven chart creation and rendering.