Skip to main content

Use the DataHub MCP server Limited availability

Use the DataHub MCP server to empower AI agents with deep visibility into your data ecosystem, enabling natural language search, end-to-end lineage tracking, and context-aware SQL generation.

Prerequisites

Get the DataHub GMS URL

  1. In the Aiven Console, go to your DataHub service.
  2. In the Connection information section, copy the Application URL.
  3. Add /api/gms to the end of the copied URL.

Configure the MCP server

To run the open-source MCP server locally, configure your AI assistant:

  1. To find the full path to the uvx command, run:

    which uvx
  2. Add the following content to your claude_desktop_config.json file:

    {
    "mcpServers": {
    "datahub": {
    "command": "FULL-PATH-TO-UVX", // For example: /Users/hsheth/.local/bin/uvx
    "args": ["mcp-server-datahub@latest"],
    "env": {
    "DATAHUB_GMS_URL": "DATAHUB_APPLICATION_URL",
    "DATAHUB_GMS_TOKEN": "DATAHUB_PAT"
    }
    }
    }
    }

    Where:

    • FULL-PATH-TO-UVX is the full path to the uvx command you found.
    • DATAHUB_APPLICATION_URL is the DataHub GMS URL.
    • DATAHUB_PAT is the personal access token you created in the DataHub UI.