AthenaMCPServer
Provides tools for executing SQL queries against Amazon Athena, retrieving results in structured formats such as JSON, CSV, or tables. Supports authentication via AWS profiles and configuration of database, region, and output location.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AthenaMCPServerrun SELECT * FROM orders LIMIT 10"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AthenaMCPServer
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
Related MCP server: NLSQL MCP Server
Setup
# Install dependencies
npm installConfiguration
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_nameAlternatively, 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 csvResponse:
test
1You 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 startAvailable 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.mdRunning in Development Mode
# Run in development mode with auto-reload
npm run watchTesting
# Run tests
npm testThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/markryanbotha/AthenaMCPServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server