Aws Mcp Setup
Configures AWS MCP servers: hosted no-auth docs endpoint or uvx proxy with credentials
Otestováno · Funguje
Co umí
Sets up AWS MCP servers for a Claude Code project, picking between the hosted AWS Knowledge documentation endpoint (no auth, no local runtime) and the full AWS MCP proxy run through uvx with AWS credentials. Includes a detection step that checks for uvx and valid AWS credentials before choosing, the exact mcpServers JSON for each option, config-file precedence (.mcp.json, ~/.claude.json), and a troubleshooting table. Triggers when you ask to configure AWS MCP, add AWS documentation search tools, or debug an aws-mcp/awsdocs server that is not connecting.
Testovací report
Cloned the repo, installed into a throwaway HOME (SKILL.md landed at ~/.claude/skills/aws-mcp-setup/SKILL.md), parsed the frontmatter with PyYAML (name + 357-char description + allowed-tools; no bundled files to resolve) and spot-checked its three external references: github.com/aws/mcp-proxy-for-aws HTTP 200, pypi mcp-proxy-for-aws HTTP 200 (v1.6.4), knowledge-mcp.global.api.aws HTTP 200. For output I built two real .mcp.json files. BASELINE (my own knowledge, written before applying the body): a stdio server `uvx awslabs.aws-documentation-mcp-server@latest`; I launched it and probed it over stdio — serverInfo awslabs.aws-documentation-mcp-server 1.29.0, tools read_documentation/read_sections/search_table/search_documentation/recommend, and it pulled 42 packages on first run. SKILL artifact (following Step 2's detection gate: `which uvx` found /opt/homebrew/bin/uvx but `aws sts get-caller-identity` failed with "command not found", so the body routes to Option B): {"awsdocs":{"type":"http","url":"https://knowledge-mcp.global.api.aws"}}; a live MCP initialize POST returned serverInfo AWSKnowledgeMCP 1.0.0 and tools/list returned aws___read_documentation, aws___search_documentation, aws___list_regions, aws___get_regional_availability, aws___retrieve_skill — matching the tool names SKILL.md's Step 3 promises. Concrete delta: the skill's config needs zero local runtime and adds list_regions/get_regional_availability/retrieve_skill, while my baseline hard-requires Python+uvx; conversely baseline has read_sections/search_table/recommend that the hosted one lacks, so it is a real but one-sided win, hence 7 not 9. Docs lose a point because the IAM action names (aws-mcp:InvokeMCP/CallReadOnlyTool/CallReadWriteTool) and the `--metadata AWS_REGION=...` proxy flag could not be exercised without an AWS account. Security scan clean: no curl|sh, no base64, no network exfil, no injection text; only note is the plaintext AWS_ACCESS_KEY_ID/SECRET env example, which the body lists after the recommended profile-based option.
Testováno: 2026-07-21 · Claude Code 2.x (agent harness)
Instalace
git clone --depth 1 https://github.com/zxkane/aws-skills.git /tmp/aws-mcp-setup-src mkdir -p ~/.claude/skills cp -R /tmp/aws-mcp-setup-src/plugins/aws-common/skills/aws-mcp-setup ~/.claude/skills/aws-mcp-setup # Skill is documentation-only (single SKILL.md, no scripts or bundled assets). # Plugin-marketplace alternative: /plugin marketplace add zxkane/aws-skills then /plugin install aws-common@aws-skills # No deps needed for the no-auth documentation option (remote HTTP MCP endpoint). # The full AWS MCP option additionally needs: Python 3.10+ with uv/uvx, plus configured AWS credentials. # Repo also ships aws-cdk-development, aws-sst-development, aws-cost-operations, aws-agentic-ai, aws-serverless-eda under plugins/*/skills/
Příkazy a ukázkové prompty
/aws-mcp-setupConfigures AWS MCP servers: hosted no-auth docs endpoint or uvx proxy with credentials
Skilly se spouštějí běžnými požadavky — žádné příkazy k zapamatování. Po instalaci ho aktivují prompty jako tyto (anglicky):
Set up the AWS documentation MCP serverConfigure aws-mcp with my AWS credentialsTroubleshoot why my AWS MCP connection fails