AWS Bedrock Knowledge Base MCP Server
Query AWS Bedrock Knowledge Bases for RAG from your AI agent
The AWS Bedrock Knowledge Base Retrieval server lets MCP-compatible agents query your AWS Bedrock knowledge bases for Retrieval-Augmented Generation (RAG). Connect your enterprise documents to Claude without duplicating embeddings or building custom retrieval pipelines.
Installation & Configuration
Add this block to your claude_desktop_config.json (or your agent framework's MCP config file):
{
"mcpServers": {
"aws-kb-retrieval": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-aws-kb-retrieval"],
"env": {
"AWS_ACCESS_KEY_ID": "your_access_key",
"AWS_SECRET_ACCESS_KEY": "your_secret_key",
"AWS_REGION": "us-east-1"
}
}
}
}
Config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/claude/claude_desktop_config.json
Available Tools (1)
retrieve_from_aws_kb
Use Cases
- Enterprise RAG — connect Claude to internal document stores
- Knowledge retrieval — query structured AWS knowledge bases
- Compliance — use AWS's managed security for document access
Source & Documentation
GitHub Repository: https://github.com/modelcontextprotocol/servers/tree/main/src/aws-kb-retrieval-server
Protocol: Model Context Protocol (MCP) — modelcontextprotocol.io