by CDataSoftware
Amazon Athena MCP Server by CData - secure, high-performance Amazon Athena connector with CData MCP Server; Athena ODBC
Connects LLMs to Amazon Athena databases through a local MCP server, allowing natural language queries without writing SQL. Uses CData's JDBC driver to expose Athena data as relational models.
Amazon Athena MCP Server by CData is a community-built MCP server published by CDataSoftware that provides AI assistants with tools and capabilities via the Model Context Protocol. Amazon Athena MCP Server by CData - secure, high-performance Amazon Athena connector with CData MCP Server; Athena ODBC It is categorized under databases, analytics data.
You can install Amazon Athena MCP Server by CData in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Amazon Athena MCP Server by CData is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Enable Claude to query your database directly using natural language
Example
Ask 'Show me top 10 customers by revenue this month' and get SQL results instantly
Eliminate manual SQL writing for ad-hoc queries, get insights 10x faster
Generate complex reports and analytics without leaving conversation
Example
Analyze sales trends, cohort retention, user behavior patterns conversationally
Democratize data access—non-technical team members can query databases
Understand database structure, relationships, and data models
Example
'Explain the user_orders table schema and its relationships'
Onboard engineers faster, explore unfamiliar databases efficiently
Share your MCP server with the developer community
According to our notes, Amazon Athena MCP Server by CData benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We wired Amazon Athena MCP Server by CData into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Useful MCP listing: Amazon Athena MCP Server by CData is the kind of server we cite when onboarding engineers to host + tool permissions.
We evaluated Amazon Athena MCP Server by CData against two servers with overlapping tools; this profile had the clearer scope statement.
Amazon Athena MCP Server by CData is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Amazon Athena MCP Server by CData is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Useful MCP listing: Amazon Athena MCP Server by CData is the kind of server we cite when onboarding engineers to host + tool permissions.
Amazon Athena MCP Server by CData is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Amazon Athena MCP Server by CData is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Amazon Athena MCP Server by CData reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 56
CData's Model Context Protocol (MCP) Server for Amazon Athena
:heavy_exclamation_mark: This project builds a local, read-only MCP server. For fully remote MCP access, check out the first managed MCP platform: CData Connect AI. For locally hosted, full read, write, update, delete, and action capabilities and a simplified setup, check out our CData MCP Server for Amazon Athena.
We created this read-only MCP Server to allow LLMs (like Claude Desktop) to query live data Amazon Athena supported by the CData JDBC Driver for Amazon Athena.
CData JDBC Driver connects to Amazon Athena by exposing them as relational SQL models.
This server wraps that driver and makes Amazon Athena data available through a simple MCP interface, so LLMs can retrieve live information by asking natural language questions — no SQL required.
git clone https://github.com/cdatasoftware/amazon-athena-mcp-server-by-cdata.git
cd amazon-athena-mcp-server-by-cdata
mvn clean install
This creates the JAR file: CDataMCP-jar-with-dependencies.jarlib folder in the installation directory, typically:
C:\Program Files\CData\CData JDBC Driver for Amazon Athena\/Applications/CData JDBC Driver for Amazon Athena/java -jar cdata.jdbc.amazonathena.jar --licenseRun the command java -jar cdata.jdbc.amazonathena.jar to open the Connection String utility.
Configure the connection string and click "Test Connection"
Note: If the data sources uses OAuth, you will need to authenticate in your browser.
Once successful, copy the connection string for use later.
.prp file for your JDBC connection (e.g. amazon-athena.prp) using the following properties and format:
Prefix=amazonathena
ServerName=CDataAmazonAthena
ServerVersion=1.0
DriverPath=PATH\TO\cdata.jdbc.amazonathena.jar
DriverClass=cdata.jdbc.amazonathena.AmazonAthenaDriver
JdbcUrl=jdbc:amazonathena:InitiateOAuth=GETANDREFRESH;
Tables=
Create the config file for Claude Desktop ( claude_desktop_config.json) to add the new MCP server, using the format below. If the file already exists, add the entry to the mcpServers in the config file.
Windows
{
"mcpServers": {
"{classname_dash}": {
"command": "PATH\TO\java.exe",
"args": [
"-jar",
"PATH\TO\CDataMCP-jar-with-dependencies.jar",
"PATH\TO\amazon-athena.prp"
]
},
...
}
}
Linux/Mac
{
"mcpServers": {
"{classname_dash}": {
"command": "/PATH/TO/java",
"args": [
"-jar",
"/PATH/TO/CDataMCP-jar-with-dependencies.jar",
"/PATH/TO/amazon-athena.prp"
]
},
...
}
}
If needed, copy the config file to the appropriate directory (Claude Desktop as the example). Windows
cp C:\PATH\TO\claude_desktop_config.json %APPDATA%\Claude\claude_desktop_config.json
Linux/Mac
cp /PATH/TO/claude_desktop_config.json /Users/{user}/Library/Application\ Support/Claude/claude_desktop_config.json'
Run or refresh your client (Claude Desktop).
Note: You may need to fully exit or quit your Claude Desktop client and re-open it for the MCP Servers to appear.
java -jar /PATH/TO/CDataMCP-jar-with-dependencies.jar /PATH/TO/Salesforce.prp
Note: The server uses
stdioso can only be used with clients that run on the same machine as the server.
Once the MCP Server is configured, the AI client will be able to use the built-in tools to read, write, update, and delete the underlying data. In general, you do not need to call the tools explicitly. Simply ask the client to answer questions about the underlying data system. For example:
The list of tools available and their descriptions follow:
In the definitions below, {servername} refers to the name of the MCP Server in the config file (e.g. {classname_dash} above).
{servername}_get_tables - Retrieves a list of tables available in the data source. Use the {servername}_get_columns tool to list available columns on a table. The output of the tool will be returned in CSV format, with the first line containing column headers.{servername}_get_columns - Retrieves a list of columns for a table. Use the {servername}_get_tables tool to get a list of available tables. The output of the tool will be returned in CSV format, with the first line containing column headers.{servername}_run_query - Execute a SQL SELECT queryIf you are scripting out the requests sent to the MCP Server instead of using an AI Client (e.g. Claude), then you can refer to the JSON payload examples below – following the JSON-RPC 2.0 specification - when calling the available tools.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "amazon_athena_get_tables",
"arguments": {}
}
}
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "amazon_athena_get_columns",
"arguments": {
"table": "Account"
}
}
}
{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "amazon_athena_run_query",
"arguments": {
"sql": "SELECT * FROM [Account] WHERE [IsDeleted] = true"
}
}
}
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Run data quality queries to catch anomalies and inconsistencies
Example
Find duplicate records, missing values, orphaned foreign keys automatically
Maintain data integrity with less manual SQL work
Prerequisites
Time Estimate
15-30 minutes including configuration and testing
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server acts as bridge between Claude and database, translating natural language to SQL queries and returning results in structured format.
Protocols
Compatibility
✓ Use when
Use for ad-hoc data queries, exploratory analysis, report generation, schema exploration, and democratizing data access. Best for read-heavy analytics workloads.
✗ Avoid when
Avoid for production write operations, mission-critical transactions, real-time OLTP workloads, or when database contains sensitive PII without proper access controls. Use read replicas, not primary.