1. Create an API Key

<aside>

You’ll need this for authorization to your Alkemi account.

First, within DataLab, open your account menu in the upper right and select API Keys.

api_keys.png

Select the + API Key button to add a new key. Give your key a name. Select Create Key.

api_keys_create.png

And click the clipboard icon to copy it to your clipboard.

api+keys_clipboard.png

</aside>

2. Add Alkemi’s MCP server to your Claude Desktop settings file

<aside>

Open Claud Desktop and go to your settings. Select Developer and then Edit Config.

Screenshot 2025-06-23 at 7.12.09 PM.png

This will point you to the location of your claude_desktop_config.json file. Open this up and add the following pasting your API Key to replace the text <enter your API key here>

{
    "mcpServers": {
        "alkemi": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "<https://api.alkemi.cloud/mcp>",
                "--header",
                "Authorization: Bearer <enter your API key here>"
            ]
        }
    }
}

Save the config file.

</aside>

3. Chat with Alkemi in Claude!

<aside>

Close and re-open Claude Desktop so it reloads the config file. Open a new chat and click the Search and Tools button to ensure Alkemi is now available for you to invoke.

Screenshot 2025-06-23 at 7.22.12 PM.png

Ask Claude to run a query that calls your data product. In the example below we have a data product that contains Amazon listing information and we’re asking it to get average prices grouped by sub categories from this data product.

Screenshot 2025-06-23 at 7.28.28 PM.png

As Claude uses Alkemi’s MCP tools it will ask for permission. It will first ask for access to look for the proper Data Product to query.

Screenshot 2025-06-23 at 7.23.59 PM.png

Then it will ask for permission to use the tool to query that Data Product

Screenshot 2025-06-23 at 7.24.23 PM.png

Alkemi will then interpret your query sent from Claude, run the SQL, and send the results back to Claude for interpretation.

Screenshot 2025-06-23 at 7.25.32 PM.png

That’s it! Now you can access your Data Products and query them from Claude!

</aside>