Description
An MCP server that provides access to AWS documentation. This server allows Claude to search and retrieve information from AWS documentation to help answer questions about AWS services and features.
Installation
npx -y awslabs.aws-documentation-mcp-server npm install awslabs.aws-documentation-mcp-server git clone https://github.com/awslabs/mcp/tree/HEAD/src/aws-documentation-mcp-server 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": {
"command": "npx",
"args": [
"-y",
"awslabs.aws-documentation-mcp-server"
]
}
}
}