Access Live Amazon Athena Data in Emergent via CData Connect AI

Yazhini G
Yazhini G
Technical Marketing Engineer
Leverage the CData Connect AI Remote MCP Server to enable Emergent agents to securely access and build applications with live Amazon Athena data through MCP integration.

Emergent is an AI-powered development platform that lets users describe what they want to build and have an autonomous agent generate full-stack web applications in real time. Agents can connect to external tools and data sources through MCP to retrieve live data and power their outputs.

By integrating Emergent with CData Connect AI through the built-in MCP (Model Context Protocol) Server, Emergent agents gain governed, real-time access to live Amazon Athena data. This enables agents to query, analyze, and visualize Amazon Athena data: either by calling MCP tools directly during a session, or by generating a full application wired to live data, all without manual data exports or custom integration code.

This article outlines the steps to configure Amazon Athena connectivity in Connect AI, register the CData MCP Server in Emergent, and interact with live Amazon Athena data from Emergent.

About Amazon Athena Data Integration

CData provides the easiest way to access and integrate live data from Amazon Athena. Customers use CData connectivity to:

  • Authenticate securely using a variety of methods, including IAM credentials, access keys, and Instance Profiles, catering to diverse security needs and simplifying the authentication process.
  • Streamline their setup and quickly resolve issue with detailed error messaging.
  • Enhance performance and minimize strain on client resources with server-side query execution.

Users frequently integrate Athena with analytics tools like Tableau, Power BI, and Excel for in-depth analytics from their preferred tools.

To learn more about unique Amazon Athena use cases with CData, check out our blog post: https://www.cdata.com/blog/amazon-athena-use-cases.


Getting Started


Step 1: Configure Amazon Athena connectivity for Emergent

Connectivity to Amazon Athena from Emergent is made possible through CData Connect AI's Remote MCP Server. To interact with Amazon Athena data from Emergent, start by creating and configuring a Amazon Athena connection in CData Connect AI.

  1. Log into Connect AI, click Sources, and then click Add Connection
  2. Select Amazon Athena from the Add Connection panel
  3. Enter the necessary authentication properties to connect to Amazon Athena.

    Authenticating to Amazon Athena

    To authorize Amazon Athena requests, provide the credentials for an administrator account or for an IAM user with custom permissions: Set AccessKey to the access key Id. Set SecretKey to the secret access key.

    Note: Though you can connect as the AWS account administrator, it is recommended to use IAM user credentials to access AWS services.

    Obtaining the Access Key

    To obtain the credentials for an IAM user, follow the steps below:

    1. Sign into the IAM console.
    2. In the navigation pane, select Users.
    3. To create or manage the access keys for a user, select the user and then select the Security Credentials tab.

    To obtain the credentials for your AWS root account, follow the steps below:

    1. Sign into the AWS Management console with the credentials for your root account.
    2. Select your account name or number and select My Security Credentials in the menu that is displayed.
    3. Click Continue to Security Credentials and expand the Access Keys section to manage or create root account access keys.

    Authenticating from an EC2 Instance

    If you are using the CData Data Provider for Amazon Athena 2018 from an EC2 Instance and have an IAM Role assigned to the instance, you can use the IAM Role to authenticate. To do so, set UseEC2Roles to true and leave AccessKey and SecretKey empty. The CData Data Provider for Amazon Athena 2018 will automatically obtain your IAM Role credentials and authenticate with them.

    Authenticating as an AWS Role

    In many situations it may be preferable to use an IAM role for authentication instead of the direct security credentials of an AWS root user. An AWS role may be used instead by specifying the RoleARN. This will cause the CData Data Provider for Amazon Athena 2018 to attempt to retrieve credentials for the specified role. If you are connecting to AWS (instead of already being connected such as on an EC2 instance), you must additionally specify the AccessKey and SecretKey of an IAM user to assume the role for. Roles may not be used when specifying the AccessKey and SecretKey of an AWS root user.

    Authenticating with MFA

    For users and roles that require Multi-factor Authentication, specify the MFASerialNumber and MFAToken connection properties. This will cause the CData Data Provider for Amazon Athena 2018 to submit the MFA credentials in a request to retrieve temporary authentication credentials. Note that the duration of the temporary credentials may be controlled via the TemporaryTokenDuration (default 3600 seconds).

    Connecting to Amazon Athena

    In addition to the AccessKey and SecretKey properties, specify Database, S3StagingDirectory and Region. Set Region to the region where your Amazon Athena data is hosted. Set S3StagingDirectory to a folder in S3 where you would like to store the results of queries.

    If Database is not set in the connection, the data provider connects to the default database set in Amazon Athena.

  4. Click Save & Test
  5. Navigate to the Permissions tab and update user-based permissions

Add a Personal Access Token

A Personal Access Token (PAT) is used to authenticate the connection to Connect AI from Emergent. It is best practice to create a separate PAT for each integration to maintain granular access control.

  1. Click the gear icon () at the top right of the Connect AI app to open Settings
  2. On the Settings page, go to the Access Tokens section and click Create PAT
  3. Give the PAT a descriptive name and click Create
  4. Copy the token when displayed and store it securely. It will not be shown again

With the Amazon Athena connection configured and a PAT generated, Emergent can now connect to Amazon Athena data through Connect AI.

Step 2: Configure Connect AI in Emergent

CData Connect AI can be integrated with Emergent in two ways depending on your account tier. Pro and Enterprise users can register the MCP Server directly in the Emergent UI, while free-tier users can describe the integration in natural language and have Emergent's agent build a connected application automatically.

Method 1: Direct MCP Configuration (Pro/Enterprise)

Pro and Enterprise users can register the CData Connect AI MCP Server directly in the Emergent UI. Once registered, agents in any project can call live Amazon Athena data through MCP tools without additional setup.

  1. Sign in to Emergent and create an account if you do not already have one
  2. Click to start a new project. Enter a Project Name and click Create Project
  3. In the project chat window, select your preferred model from the dropdown (e.g., Claude 4.5 Sonnet)
  4. Click the Advanced Controls icon and then click Select MCP Tools to open the MCP configuration panel
  5. In the Select MCPs to use dialog, click + New MCP Server to add a custom MCP server
  6. In the Configure New MCP dialog, fill in the following:
    • MCP Name: cdata-mcp
    • Description: (optional) A brief description of the server
    • JSON Configuration: Paste the following, replacing base64-encode-email-pat with your Base64-encoded email:PAT string:
    {
        "mcpServers": {
            "cdata-mcp": {
                "args": [
                    "-y",
                    "mcp-client",
                    "connect",
                    "https://mcp.cloud.cdata.com/mcp"
                ],
                "command": "npx",
                "env": {
                    "MCP_HEADERS": "{\"Authorization\":\"Basic base64-encode-email-pat\"}"
                }
            }
        }
    }
            

    Note: Combine your Connect AI email and PAT in the format email:PAT, then Base64 encode the combined string. For example, given [email protected]:ABC123...XYZ, the value becomes something like: dXNlckBteWRvbWFpbjphSzkvbVB4Mi9Rcjd2TjQ...

  7. Click Verify and Save to register the MCP server
  8. Return to Select MCP Tools and confirm that cdata-mcp is listed and its toggle is enabled. If it is not enabled, toggle it on

With the CData MCP Server registered and enabled, Emergent agents can now query and act on live Amazon Athena data through Connect AI in any project.

Query live Amazon Athena data from Emergent

With the MCP server configured, start a conversation in the Emergent agent panel to interact with live Amazon Athena data.

  1. Return to the project chat and enter a prompt to explore your data, for example:
    • List all available catalogs in my cdata-mcp connection.
    • Show the schemas and tables available for Amazon Athena.
    • Query the top 5 records from Amazon Athena data.
  2. The agent calls the CData Connect AI MCP Server and returns live results from Amazon Athena data

Method 2: Build an application with natural language (Free)

Free-tier users can direct Emergent to build a full-stack application that connects to the CData Connect AI MCP Server through a natural language prompt. The agent will gather the required endpoint and credentials interactively, then generate a working application wired to live Amazon Athena data.

  1. Sign in to Emergent and open the chat window
  2. Enter a prompt that describes the application you want to build. For example:
    I would like to build a small application that connects to a remote MCP HTTPS server.
    I already have the MCP endpoint URL and the required credentials.
    The application should:
      - Establish a connection to the remote MCP server
      - Authenticate using the provided credentials
      - Retrieve and list all available catalogs from the MCP
    
    Please make sure the credentials are stored securely in a .env file
    and not hardcoded in the application.
            
  3. Emergent will prompt you to provide the MCP endpoint URL and authentication credentials. Supply the following values:
    • MCP Endpoint URL: https://mcp.cloud.cdata.com/mcp
    • Authorization: Basic base64(email:PAT)
  4. The Emergent agent generates a full-stack application that connects to Amazon Athena data through Connect AI and renders live results in the App Preview panel.

At this point, Emergent has built an application that communicates with the CData Connect AI MCP Server and retrieves live Amazon Athena data, all from a single natural language prompt.

Get CData Connect AI

To access 300+ SaaS, Big Data, and NoSQL sources directly from your cloud applications, try CData Connect AI today! Sign up for a free 14-day trial of CData Connect AI, and as always, our world-class Support Team is available to assist you with any questions you may have.

Ready to get started?

Learn more about CData Connect AI or sign up for free trial access:

Free Trial