.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/aws/agent-toolkit-for-aws
home/mcp-servers/aws/agent-toolkit-for-aws
aws avatar

agent-toolkit-for-aws

byaws· 2 MCP servers

Stars

2.1k

Forks

202

Category

AI Agents & MCP

View on GitHub

TL;DR

Official, AWS-supported MCP servers, skills, and plugins to help AI agents build on AWS

How to install agent-toolkit-for-aws?

aws/agent-toolkit-for-aws
$git clone https://github.com/aws/agent-toolkit-for-aws

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install agent-toolkit-for-aws by running `git clone https://github.com/aws/agent-toolkit-for-aws`, then use it for the current task and follow its documentation at https://github.com/aws/agent-toolkit-for-aws.

Files · 1

View on GitHub
README.md
1# Agent Toolkit for AWS
2 
3[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
4[![Build](https://github.com/aws/agent-toolkit-for-aws/actions/workflows/build.yml/badge.svg)](https://github.com/aws/agent-toolkit-for-aws/actions/workflows/build.yml)
5[![Status](https://img.shields.io/badge/status-GA-green.svg)](https://github.com/aws/agent-toolkit-for-aws)
6 
7Help AI coding agents build, deploy, and manage applications on AWS.
8 
9The Agent Toolkit for AWS gives AI coding agents the tools, knowledge, and guardrails they need to work with AWS services. It works with the coding agents developers already use — including Claude Code, Codex, Cursor, and Kiro.
10 
11## Quick start
12 
13### AWS CLI
14 
15Use the Agent Toolkit directly from your terminal with the AWS CLI:
16 
17```
18aws configure agent-toolkit
19```
20 
21See the [AWS CLI integration guide](https://docs.aws.amazon.com/agent-toolkit/latest/userguide/aws-cli.html) for setup, configuration, and usage instructions.
22 
23### Claude Code
24 
25The plugins are available on the official Anthropic marketplace (`claude-plugins-official`) which is added to your Claude Code installation by default.
26Use the following commands to install supported plugins from the toolkit:
27 
28For `aws-core` that covers service selection, CDK/CloudFormation, serverless, containers, storage, observability, billing, SDK usage, and deployment:
29 
30```
31/plugin install aws-core@claude-plugins-official
32```
33 
34> **Tip:** If you get `Plugin not found`, update your local marketplace index first:
35>
36> ```
37> /plugin marketplace update claude-plugins-official
38> ```
39 
40For `aws-agents` that covers building AI agents on AWS with Amazon Bedrock and AgentCore:
41 
42```
43/plugin install aws-agents@claude-plugins-official
44```
45 
46For `aws-data-analytics` that covers data lake, analytics, and ETL workflows with S3 Tables, AWS Glue, and Athena:
47 
48```
49/plugin install aws-data-analytics@claude-plugins-official
50```
51 
52For `aws-agents-for-devsecops` used to investigate incidents, review code and execute UAT for release readiness, scan code for vulnerabilities, and run penetration tests with AWS DevOps Agent and AWS Security Agent.
53 
54```
55/plugin marketplace add aws/agent-toolkit-for-aws
56/plugin install aws-agents-for-devsecops
57/reload-plugins
58 
59# Or from Claude's official marketplace:
60/plugin install aws-agents-for-devsecops@claude-plugins-official
61/reload-plugins
62 
63# Setup:
64/aws-agents-for-devsecops:setup
65```
66 
67### Codex
68 
69In your terminal:
70 
71```
72codex plugin marketplace add aws/agent-toolkit-for-aws
73```
74 
75Then launch Codex and run `/plugins` to browse and install the **aws-core** plugin.
76 
77### Cursor
78 
79Add this repository as a team marketplace from **Settings → Plugins → Team Marketplaces → Add Marketplace → Import from Repo**, pointing it at `aws/agent-toolkit-for-aws`. Cursor indexes the plugins listed in [`.cursor-plugin/marketplace.json`](.cursor-plugin/marketplace.json) on import.
80 
81Then open the **Plugins** panel and install the **aws-core** plugin (start here), or **aws-agents** and **aws-data-analytics** as needed. Each plugin bundles the AWS MCP Server configuration and agent skills.
82 
83### Kiro
84 
85Kiro setup has two independent parts: the AWS MCP Server (for runtime AWS API access and documentation search) and local skills (for task-specific agent guidance). They complement each other but work independently — skills don't require the MCP server, and the MCP server doesn't serve locally-installed skills.
86 
87**1. Add the AWS MCP Server** to your Kiro MCP configuration (`.kiro/settings/mcp.json`):
88 
89```json
90{
91 "mcpServers": {
92 "aws": {
93 "command": "uvx",
94 "args": [
95 "mcp-proxy-for-aws@1.6.4",
96 "https://aws-mcp.us-east-1.api.aws/mcp",
97 "--metadata",
98 "AWS_REGION=us-west-2"
99 ]
100 }
101 }
102}
103```
104 
105> **Note:** It is recommended to pin to a specific version (e.g., `@1.6.4`) to ensure reproducible behavior and protect against supply chain risks. We recommend regularly checking [PyPI](https://pypi.org/project/mcp-proxy-for-aws/) for new stable versions and updating accordingly.
106 
107The MCP server gives your agent access to AWS APIs, sandboxed script execution, and real-time documentation search.
108 
109**2. Install skills** from this repository:
110 
111```
112npx skills add aws/agent-toolkit-for-aws/skills
113```
114 
115This installs skill files to `~/.kiro/skills/` (global) or `.kiro/skills/` (project-level). Each skill is a directory containing a `SKILL.md` file and optionally a `references/` subdirectory with additional context the agent reads from the local filesystem when needed. Kiro discovers installed skills automatically and activates them on demand when a task matches.
116 
117> **Prerequisites:** You need [uv](https://docs.astral.sh/uv/) installed. An AWS account with credentials configured locally is required for API calls and script execution, but not for documentation search or skill discovery. See the [user guide](https://docs.aws.amazon.com/agent-toolkit/latest/userguide/) for detailed setup instructions.
118 
119### Other agents
120 
121See t

Preview

aws/agent-toolkit-for-awsaws/agent-toolkit-for-aws
Repoaws/agent-toolkit-for-aws
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseApache-2.0
First seenJul 26, 2026

Tags

MCP

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k