Description

Official AWS MCP server providing bridge to access Amazon Bedrock Knowledge Bases for AI-powered document retrieval.

Installation

npx -y @aws/bedrock-mcp
npm install @aws/bedrock-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-bedrock-knowledge-base": {
      "command": "npx",
      "args": [
        "-y",
        "@aws/bedrock-mcp"
      ]
    }
  }
}