Skip to content

Latest commit

 

History

History
32 lines (28 loc) · 665 Bytes

File metadata and controls

32 lines (28 loc) · 665 Bytes

Setup Development Environment

Checkout package, install dependencies and build

cd ${HOME}/workspace
git clone https://github.com/lishenxydlgzs/aws-athena-mcp.git && cd aws-athena-mcp
npm install && npm run build
echo "MCP_PATH: ${HOME}/workspace/aws-athena-mcp/build/index.js"

Configure Client

{
  "mcpServers": {
    "aws-athena-mcp": {
      "command": "node",
      "args": [
        "<MCP_PATH>"
      ],
      "env": {
        "OUTPUT_S3_PATH": "s3://<bucket>/<s3_prefix>/",
        "AWS_REGION": "<aws_region>",
        "AWS_PROFILE": "<aws_config_profile>"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}