Description

Official AWS MCP server providing tools to access AWS documentation, search content, and get service recommendations.

Installation

npx -y @aws/docs-mcp
npm install @aws/docs-mcp
git clone https://github.com/awslabs/mcp

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "aws-documentation-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@aws/docs-mcp"
      ]
    }
  }
}