Skip to main content

An AWS Labs Model Context Protocol (MCP) server for amazon-kendra-index-mcp-server

Project description

AWS Labs Amazon Kendra Index MCP Server

An AWS Labs Model Context Protocol (MCP) server for Amazon Kendra. This MCP server allows you to use Kendra Indices as additional context for RAG.

Features:

  • Enhance your existing MCP-enabled ChatBot with additional RAG indices
  • Enhance the responses from coding assistants such as Kiro, Cline, Cursor, and Windsurf

Pre-Requisites:

  1. Sign-Up for an AWS account
  2. Create an Amazon Kendra Index with your RAG documentation
  3. Install uv from Astral or the GitHub README
  4. Install Python using uv python install 3.10

Tools:

KendraQueryTool

  • The KendraQueryTool takes the query specified by the user and queries a Kendra index to gain additional context for the response. This queries either the default index, or an index specified in the users prompt.
  • Required Parameters: query (str)
  • Optional Parameters: indexId (str), region (str)
  • Example:
    • Can you help me understand how to implement a progress event in the CreateHandler using Java? Use the KendraQueryTool to gain additional context.
    • Can you use the test-kendra-index to help answer the following questions...

KendraListIndexesTool

  • The KendraListIndexesTool lists the Kendra Indexes in your account. By default it will list all the indices in the regions provided as environment variables to the mcp config file. Otherwise the region can be specified in the prompt.
  • Optional Parameters: region (str)
  • Example:
    • Can you list the Kendra Indexes in my account in the us-west-2 region

Setup

IAM Configuration

  1. Provision a user in your AWS account IAM
  2. Attach a policy that contains at a minimum the kendra:Query and kendra:ListIndices permissions. Alternatively the AWS Managed AmazonKendraFullAccess policy can be attached. Always follow the principal or least privilege when granting users permissions. See the documentation for more information on IAM permissions for Amazon Kendra.
  3. Use aws configure on your environment to configure the credentials (access ID and access key)

Installation

Kiro Cursor VS Code
Add to Kiro Install MCP Server Install on VS Code

Configure the MCP server in your MCP client configuration (e.g., for Kiro, edit ~/.kiro/settings/mcp.json):

{
      "mcpServers": {
            "awslabs.amazon-kendra-index-mcp-server": {
                  "command": "uvx",
                  "args": ["awslabs.amazon-kendra-index-mcp-server"],
                  "env": {
                    "FASTMCP_LOG_LEVEL": "ERROR",
                    "KENDRA_INDEX_ID": "[Your Kendra Index Id]",
                    "AWS_PROFILE": "[Your AWS Profile Name]",
                    "AWS_REGION": "[Region where your Kendra Index resides]"
                  },
                  "disabled": false,
                  "autoApprove": []
                }
      }
}

Windows Installation

For Windows users, the MCP server configuration format is slightly different:

{
  "mcpServers": {
    "awslabs.amazon-kendra-index-mcp-server": {
      "disabled": false,
      "timeout": 60,
      "type": "stdio",
      "command": "uv",
      "args": [
        "tool",
        "run",
        "--from",
        "awslabs.amazon-kendra-index-mcp-server@latest",
        "awslabs.amazon-kendra-index-mcp-server.exe"
      ],
      "env": {
        "FASTMCP_LOG_LEVEL": "ERROR",
        "KENDRA_INDEX_ID": "[Your Kendra Index Id]",
        "AWS_PROFILE": "[Your AWS Profile Name]",
        "AWS_REGION": "[Region where your Kendra Index resides]"
      }
    }
  }
}

or docker after a successful docker build -t awslabs/amazon-kendra-index-mcp-server.:

# fictitious `.env` file with AWS temporary credentials
AWS_ACCESS_KEY_ID=<from the profile you set up>
AWS_SECRET_ACCESS_KEY=<from the profile you set up>
AWS_SESSION_TOKEN=<from the profile you set up>
  {
    "mcpServers": {
      "awslabs.amazon-kendra-index-mcp-server": {
        "command": "docker",
        "args": [
          "run",
          "--rm",
          "--interactive",
          "--env-file",
          "/full/path/to/file/above/.env",
          "awslabs/amazon-kendra-index-mcp-server:latest"
        ],
        "env": {},
        "disabled": false,
        "autoApprove": []
      }
    }
  }

NOTE: Your credentials will need to be kept refreshed from your host

Best Practices

  • Follow the principle of least privilege when setting up IAM permissions
  • Use separate AWS profiles for different environments (dev, test, prod)
  • Monitor broker metrics and logs for performance and issues
  • Implement proper error handling in your client applications

Security Considerations

When using this MCP server, consider:

  • This MCP server needs permissions to query and list Amazon Kendra Indexes
  • This MCP server cannot create, modify, or delete resources in your account

Troubleshooting

  • If you encounter permission errors, verify your IAM user has the correct policies attached
  • For connection issues, check network configurations and security groups
  • If resource modification fails with a tag validation error, it means the resource was not created by the MCP server
  • For general Amazon Kendra issues, consult the Amazon Kendra developer guide

Version

Current MCP server version: 0.0.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file awslabs_amazon_kendra_index_mcp_server-1.0.16.tar.gz.

File metadata

File hashes

Hashes for awslabs_amazon_kendra_index_mcp_server-1.0.16.tar.gz
Algorithm Hash digest
SHA256 9653646c83070391ec414f22e5cf34a8a32f345441465b609343174d957c1aa8
MD5 563cf13d09d9d1a3aea6119600dd9cd9
BLAKE2b-256 8e176e0e5e1e47870b9ff52900aaa05e48985ef56a29119e58df9b4d71c308d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for awslabs_amazon_kendra_index_mcp_server-1.0.16.tar.gz:

Publisher: release.yml on awslabs/mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file awslabs_amazon_kendra_index_mcp_server-1.0.16-py3-none-any.whl.

File metadata

File hashes

Hashes for awslabs_amazon_kendra_index_mcp_server-1.0.16-py3-none-any.whl
Algorithm Hash digest
SHA256 288224c6519ae38dd81105bde2d31b176250ebb52c403a8a184bdadaa397ad4c
MD5 d3a2e1233e5be129bc8f8b59b0095d7b
BLAKE2b-256 3f9df177ef36bda55067f21d6d76d0ed90f77084f6bafff900b3483d3e520013

See more details on using hashes here.

Provenance

The following attestation bundles were made for awslabs_amazon_kendra_index_mcp_server-1.0.16-py3-none-any.whl:

Publisher: release.yml on awslabs/mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page