AthenaMCPServer
БесплатноНе проверенAn MCP server that allows AI assistants to execute SQL queries against Amazon Athena and retrieve results in structured formats.
Описание
An MCP server that allows AI assistants to execute SQL queries against Amazon Athena and retrieve results in structured formats.
README
An MCP (Model Context Protocol) server for querying Amazon Athena. This server allows AI assistants to execute SQL queries against AWS Athena and retrieve results in a structured format.
Features
- Execute SQL queries against Amazon Athena
- Authenticate to AWS account using profiles
- Format results as JSON, CSV, or formatted tables
- Configurable database, region, and output location
Setup
# Install dependencies
npm install
Configuration
The server uses the following environment variables for configuration:
AWS_REGION: AWS region where Athena is located (default: "us-east-1")ATHENA_WORKGROUP: Athena workgroup to use (default: "primary")ATHENA_OUTPUT_LOCATION: S3 location for query results (default: "s3://aws-athena-query-results/")ATHENA_DATABASE: Default database to query (default: "default")ATHENA_CATALOG: Default catalog/data source to query (default: "AwsDataCatalog")AWS_PROFILE: AWS Profile to use for authentication (default: undefined, and will fallback to using default AWS credentials provider chain)
You can set these environment variables before running the server:
export AWS_REGION=us-west-2
export ATHENA_WORKGROUP=my-workgroup
export ATHENA_OUTPUT_LOCATION=s3://my-bucket/athena-results/
export ATHENA_DATABASE=my_database
export ATHENA_CATALOG=AwsDataCatalog
export AWS_PROFILE=aws_profile_name
Alternatively, you can set these environment variables in the MCP Client configuration (see below).
Configuration for MCP Client
{
"mcpServers": {
"athena-mcp": {
"command": "npm",
"args": [
"--prefix",
"/Users/<alias>/workplace/AthenaMCPServer/src/AthenaMCPServer",
"start"
],
"disabled": false,
"env": {
"AWS_PROFILE": "<aws-profile-for-account-with-athena>",
"ATHENA_OUTPUT_LOCATION": "s3://<your-athena-query-results-bucket>"
},
"autoApprove": []
}
}
}
AWS Authentication
The server uses the AWS SDK's default credential provider chain. You can authenticate using any of the following methods:
- Environment variables (
AWS_ACCESS_KEY_IDandAWS_SECRET_ACCESS_KEY) - Shared credentials file (
~/.aws/credentials) - EC2 instance profile or ECS task role
- AWS SSO
Using AWS Profiles
You can specify an AWS profile from your shared credentials config file (~/.aws/config) when executing queries:
{
"query": "SELECT * FROM my_table LIMIT 10",
"profile": "my-aws-profile"
}
This is useful when you have multiple AWS accounts or roles configured in your credentials file.
For more information, see the AWS SDK documentation.
Usage
Basic example Using MCP Client (e.g. Cline)
Type the following into the MCP Client Window
use the athena mcp server to run a basic query and return in csv
Response:
test
1
You can pass it a query directly, or use other LLMs to generate the SQL for you and ask it to run it using the Athena MCP Server
Starting the Server
# Start the server
npm start
Available Tools
query_athena
Executes SQL queries against Amazon Athena and retrieves results.
Parameters:
query(required): SQL query to executedatabase(optional): Database to query (uses default if not specified)catalog(optional): Catalog (Data source) to query (uses AwsDataCatalog if not specified)region(optional): AWS region (uses default if not specified)format(optional): Result format (json, table, or csv)profile(optional): AWS profile name to use from shared credentials file
Example:
{
"query": "SELECT * FROM my_table LIMIT 10",
"database": "my_database",
"catalog": "AwsDataCatalog",
"format": "table",
"profile": "my-aws-profile"
}
Development
Project Structure
athena-mcp/
├── src/
│ ├── core/
│ │ └── aws/
│ │ └── athena-client.ts
│ ├── tools/
│ │ └── query-athena/
│ │ └── tool.ts
│ ├── cli.ts
│ └── index.ts
├── package.json
├── tsconfig.json
└── README.md
Running in Development Mode
# Run in development mode with auto-reload
npm run watch
Testing
# Run tests
npm test
Установка AthenaMCPServer
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/markryanbotha/AthenaMCPServerFAQ
AthenaMCPServer MCP бесплатный?
Да, AthenaMCPServer MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для AthenaMCPServer?
Нет, AthenaMCPServer работает без API-ключей и переменных окружения.
AthenaMCPServer — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить AthenaMCPServer в Claude Desktop, Claude Code или Cursor?
Открой AthenaMCPServer на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
автор: wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
автор: madhurprashPostgres
Query your database in natural language
автор: AnthropicPostgreSQL
Read-only database access with schema inspection.
автор: modelcontextprotocolCompare AthenaMCPServer with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории data
