The Context Platform for your Data and AI Stack
12,672
stars
14,525
commits
Python
primary language
Sep 11, 2026
updated
Enterprise-grade metadata platform enabling discovery, governance, and observability across your entire data ecosystem
Free Cloud Trial • Quick Start • Live Demo • Documentation • Slack Community • YouTube
Built with ❤️ by DataHub and LinkedIn
Search, discover, and understand your data with DataHub's unified metadata platform
Ask data questions in plain English — get SQL, results, and charts back
Open-source agent grounded in your DataHub catalog. Apache 2.0. Bring your own LLM.
Quick start:
git clone https://github.com/datahub-project/analytics-agent.git
cd analytics-agent && bash quickstart.sh
Read the announcement → · Docs → · Repo →
Using AI coding assistants? Connect Cursor, Claude Desktop, or Cline directly to DataHub via the Model Context Protocol:
npx -y @acryldata/mcp-server-datahub init
🔍 Finding the right DataHub? This is the open-source metadata platform at datahub.com (GitHub: datahub-project/datahub). It was previously hosted at
datahubproject.io, which now redirects to datahub.com. This project is not related to datahub.io, which is a separate public dataset hosting service. See the FAQ below.
DataHub is the #1 open-source AI data catalog that enables discovery, governance, and observability across your entire data ecosystem. Originally built at LinkedIn, DataHub now powers data discovery at thousands of organizations worldwide, managing millions of data assets.
The Challenge: Modern data stacks are fragmented across dozens of tools—warehouses, lakes, BI platforms, ML systems, AI agents, orchestration engines. Finding the right data, understanding its lineage, and ensuring governance is like searching through a maze blindfolded.
The DataHub Solution: DataHub acts as the central nervous system for your data stack—connecting all your tools through real-time streaming or batch ingestion to create a unified metadata graph. Unlike static catalogs, DataHub keeps your metadata fresh and actionable—powering both human teams and AI agents.

Essential for modern data teams and reliable AI agents:
No. datahub.io is a completely separate project — a public dataset hosting service with no affiliation to this project. DataHub (this project) is an open-source metadata platform for data discovery, governance, and observability, hosted at datahub.com and developed at github.com/datahub-project/datahub.
DataHub was previously hosted at datahubproject.io. That domain now redirects to datahub.com. All documentation has moved to docs.datahub.com. If you find references to datahubproject.io in blog posts or tutorials, they refer to this same project — just under its former domain.
Yes. DataHub was originally built at LinkedIn to manage metadata at scale across their data ecosystem. LinkedIn open-sourced DataHub in 2020. It has since grown into an independent community project under the datahub-project GitHub organization, now hosted at datahub.com.
# macOS / Linux (simplest)
brew install datahub-project/tap/datahub
# Or via pip (any platform)
pip install acryl-datahub
datahub docker quickstart
See the Quick Start section below for full instructions. The PyPI package is acryl-datahub; the Homebrew tap is datahub-project/homebrew-tap.
🔍 Universal Search |
📊 Column-Level Lineage |
📋 Rich Dataset Profiles |
🏛️ Governance Dashboard |
▶️ Watch DataHub in Action:
No installation required. Explore a fully-loaded DataHub instance with sample data instantly:
🌐 Launch Live Demo: demo.datahub.com
Get DataHub running on your machine in under 2 minutes.
Prerequisites: Docker Desktop with 8GB+ RAM allocated.
Install the DataHub CLI using either Homebrew (macOS / Linux) or pip:
# Homebrew (macOS / Linux)
brew install datahub-project/tap/datahub
# Or pip (any platform)
python3 -m pip install --upgrade pip wheel setuptools
python3 -m pip install --upgrade acryl-datahub
Then launch DataHub locally via Docker:
datahub docker quickstart
# Access DataHub at http://localhost:9002
# Default credentials: datahub / datahub
Note: For pip, you can also use uv or other Python package managers.
What's included:
Best for advanced users who want to modify the core codebase or run directly from the repository:
# Clone the repository
git clone https://github.com/datahub-project/datahub.git
cd datahub
# One-time setup (Python CLI + dev tooling)
scripts/dev/datahub-dev.sh setup
# Start DataHub (Gradle profiles under docker/profiles)
scripts/dev/datahub-dev.sh start
# Access DataHub at http://localhost:9002
# Default credentials: datahub / datahub
DataHub supports three deployment models:
→ See all deployment guides (AWS, Azure, GCP, environment variables)
→ Full architecture breakdown: components, storage layer, APIs, and design decisions
Use Case: Extract table metadata, column schemas, and usage statistics from Snowflake data warehouse.
Prerequisites:
pip install 'acryl-datahub[snowflake]')# snowflake_recipe.yml
source:
type: snowflake
config:
# Connection details
account_id: "xy12345.us-east-1"
warehouse: "COMPUTE_WH"
username: "${SNOWFLAKE_USER}"
password: "${SNOWFLAKE_PASSWORD}"
# Optional: Filter specific databases
database_pattern:
allow:
- "ANALYTICS_DB"
- "MARKETING_DB"
sink:
type: datahub-rest
config:
server: "http://localhost:8080"
# Run ingestion
datahub ingest -c snowflake_recipe.yml
# Expected output:
# ✓ Connecting to Snowflake...
# ✓ Discovered 150 tables in ANALYTICS_DB
# ✓ Discovered 75 tables in MARKETING_DB
# ✓ Ingesting metadata...
# ✓ Successfully ingested 225 datasets to DataHub
What gets ingested:
Use Case: Programmatically search DataHub catalog and retrieve dataset metadata.
Prerequisites:
pip install 'acryl-datahub[datahub-rest]')from datahub.ingestion.graph.client import DatahubClientConfig, DataHubGraph
# Initialize DataHub client
config = DatahubClientConfig(server="http://localhost:8080")
graph = DataHubGraph(config)
# Search for datasets containing "customer"
urns = graph.get_urns_by_filter(
entity_types=["dataset"],
query="customer",
)
for urn in urns:
print(f"Found: {urn}")
# Example output:
# Found: urn:li:dataset:(urn:li:dataPlatform:snowflake,analytics.customer_profiles,PROD)
# Found: urn:li:dataset:(urn:li:dataPlatform:bigquery,marketing.customer_segments,PROD)
Response format: Each result is a URN string uniquely identifying the dataset. Use the URN to fetch full metadata via the GraphQL or REST API.
Use Case: Retrieve upstream and downstream dependencies for a specific dataset.
Prerequisites:
GraphQL Query:
query GetLineage {
dataset(
urn: "urn:li:dataset:(urn:li:dataPlatform:snowflake,analytics.customer_profiles,PROD)"
) {
# Get upstream dependencies (source tables)
upstream: lineage(input: { direction: UPSTREAM }) {
entities {
urn
... on Dataset {
name
platform {
name
}
}
}
}
# Get downstream dependencies (consuming tables/dashboards)
downstream: lineage(input: { direction: DOWNSTREAM }) {
entities {
urn
type
... on Dataset {
name
platform {
name
}
}
... on Dashboard {
dashboardId
tool
}
}
}
}
}
Execute via cURL:
curl -X POST http://localhost:8080/api/graphql \
-H "Content-Type: application/json" \
-d '{"query": "query GetLineage { ... }"}'
Response structure:
upstream: Array of datasets that feed into this datasetdownstream: Array of datasets, dashboards, or ML models that consume this datasetUse Case: Programmatically add or update dataset documentation and custom properties.
Prerequisites:
from datahub.metadata.schema_classes import DatasetPropertiesClass
from datahub.emitter.mce_builder import make_dataset_urn
from datahub.emitter.rest_emitter import DatahubRestEmitter
# Create emitter to send metadata to DataHub
emitter = DatahubRestEmitter("http://localhost:8080")
# Create dataset URN (unique identifier)
dataset_urn = make_dataset_urn(
platform="snowflake",
name="analytics.customer_profiles",
env="PROD"
)
# Define dataset properties
properties = DatasetPropertiesClass(
description="""
Customer profiles aggregated from CRM and transaction data.
**Update Schedule:** Updated nightly via Airflow DAG `customer_profile_etl`
**Data Retention:** 7 years for compliance
**Owner:** Data Platform Team
""",
customProperties={
"owner_team": "data-platform",
"update_frequency": "daily",
"data_sensitivity": "PII",
"upstream_dag": "customer_profile_etl",
"business_domain": "customer_analytics"
}
)
# Emit metadata to DataHub
emitter.emit_mcp(
entityUrn=dataset_urn,
aspectName="datasetProperties",
aspect=properties
)
print(f"✓ Successfully updated documentation for {dataset_urn}")
What this does:
Use Case: Enable AI agents (Cursor, Claude Desktop, Cline) to query DataHub metadata directly from your IDE or development environment.
Prerequisites:
Quick Setup:
# Initialize MCP server for DataHub
npx -y @acryldata/mcp-server-datahub init
# Follow the interactive prompts to configure:
# - DataHub GMS endpoint (e.g., http://localhost:8080)
# - Authentication token (if required)
# - MCP server settings
Configure your AI tool:
For Claude Desktop, add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"datahub": {
"command": "npx",
"args": ["-y", "@acryldata/mcp-server-datahub"]
}
}
}
For Cursor, configure in Settings → Features → MCP Servers
What you can ask your AI:
Example conversation:
You: "What datasets are owned by the data-platform team?"
AI: Based on DataHub metadata, here are the datasets owned by data-platform:
- urn:li:dataset:(urn:li:dataPlatform:snowflake,analytics.customer_profiles,PROD)
Name: customer_profiles
Platform: Snowflake
Description: Aggregated customer data from CRM and transactions
- urn:li:dataset:(urn:li:dataPlatform:bigquery,marketing.campaign_performance,PROD)
Name: campaign_performance
Platform: BigQuery
Description: Marketing campaign metrics and ROI tracking
[... more results]
Benefits:
📖 Full Documentation: MCP Server for DataHub
| Use Case | Description | Learn More |
|---|---|---|
| 🔍 Data Discovery | Help users find the right data for analytics and ML | Guide |
| 📊 Impact Analysis | Understand downstream impact before making changes | Lineage Docs |
| 🏛️ Data Governance | Enforce policies, classify PII, manage access | Governance Guide |
| 🔔 Data Quality | Monitor freshness, volumes, schema changes | Quality Checks |
| 📚 Documentation | Centralize data documentation and knowledge | Docs Features |
| 👥 Collaboration | Foster data culture with discussions and ownership | Collaboration |
Learn from teams using DataHub in production and get practical guidance:
🏆 Best Practices from the FieldReal-world metadata strategies from teams at Grab, Slack, and Checkout.com who manage data at scale. Case Studies |
📋 Data Contracts: How to Use ThemPractical guide to implementing data contracts between producers and consumers for quality and accountability. Implementation Guide |
🤖 How Block Powers AI Agents with DataHubReal-world case study: scaling data governance and AI operations across 50+ platforms using MCP. AI Case Study |
→ Explore all posts on our blog
3,000+ organizations run DataHub in production worldwide — across both open-source deployments and DataHub Cloud — from hyperscale tech companies to regulated financial institutions and healthcare providers.
🛒 E-Commerce & Retail: Etsy • Experius • Klarna • LinkedIn • MediaMarkt Saturn • Uphold • Wealthsimple • Wolt
🏥 Healthcare & Life Sciences: CVS Health • IOMED • Optum
✈️ Travel & Transportation: Cabify • DFDS • Expedia Group • Hurb • Peloton • Viasat
📚 Education & EdTech: ClassDojo • Coursera • Udemy
💰 Financial Services: Banksalad • Block • Chime • FIS • Funding Circle • GEICO • Inter&Co • N26 • Santander • Shanghai HuaRui Bank • Stash • Visa
🎮 Gaming, Entertainment & Streaming: Netflix • Razer • Showroomprive • TypeForm • UKEN Games • Zynga
🚀 Technology & SaaS: Adevinta • Apple • Digital Turbine • DPG Media • Foursquare • Geotab • HashiCorp • hipages • inovex • KPN • Miro • MYOB • Notion • Okta • Rippling • Saxo Bank • Slack • ThoughtWorks • Twilio • Wikimedia • WP Engine
📊 Data & Analytics: ABLY • DefinedCrowd • Grofers • Haibo Technology • Moloco • PITS Global Data Recovery Services • SpotHero
And thousands more across DataHub Core and DataHub Cloud.
Using DataHub? Please feel free to add your organization to the list if we missed it — open a PR or let us know on Slack.
DataHub is part of a rich ecosystem of tools and integrations.
| Repository | Description | Links |
|---|---|---|
| datahub | Core platform: metadata model, services, connectors, and web UI | Docs |
| datahub-actions | Framework for responding to metadata changes in real-time | Guide |
| datahub-helm | Production-ready Helm charts for Kubernetes deployment | Charts |
| static-assets | Logos, images, and brand assets for DataHub | - |
| Project | Description | Maintainer |
|---|---|---|
| datahub-tools | Python tools for GraphQL endpoint interaction | Notion |
| dbt-impact-action | GitHub Action for dbt change impact analysis | Acryl Data |
| business-glossary-sync-action | Sync business glossary via GitHub PRs | Acryl Data |
| mcp-server-datahub | Model Context Protocol server for AI integration | Acryl Data |
| meta-world | Recipes, custom sources, and transformations | Community |
📊 BI & Analytics: Tableau • Looker • Power BI • Superset • Metabase • Mode • Redash
🗄️ Data Warehouses: Snowflake • BigQuery • Redshift • Databricks • Synapse • ClickHouse
🔄 Data Orchestration: Airflow • dbt • Dagster • Prefect • Luigi
🤖 ML Platforms: SageMaker • MLflow • Feast • Kubeflow • Weights & Biases
🔗 Data Integration: Fivetran • Airbyte • Stitch • Matillion
Join thousands of data practitioners building with DataHub!
Monthly community calls with roadmap updates, live demos, and user case studies.
| Channel | Purpose | Link |
|---|---|---|
| Slack Community | Real-time chat, questions, announcements | Join 16,000+ members |
| GitHub Discussions | Technical discussions, feature requests | Start a Discussion |
| GitHub Issues | Bug reports, feature requests | Open an Issue |
| Stack Overflow | Technical Q&A (tag: datahub) | Ask a Question |
| YouTube | Tutorials, demos, talks | Subscribe |
| Company updates, blogs | Follow Us | |
| Twitter/X | Quick updates, community highlights | Follow @datahubproject |
We ❤️ contributions from the community! See CONTRIBUTING.md for setup, guidelines, and ways to get involved.
Browse Good First Issues to get started!
Blog Posts & Articles:
Conference Talks:
Podcasts:
| Resource | URL |
|---|---|
| 📖 Official Documentation | https://docs.datahub.com |
| 🏠 Project Website | https://datahub.com |
| 🌐 Live Demo | https://demo.datahub.com |
| 📊 Feature Requests | https://support.datahub.com/hc/en-us/requests/new |
| 🗓️ Town Hall Schedule | https://docs.datahub.com/docs/townhalls |
| 💬 Slack Community | https://datahub.com/slack |
| 📺 YouTube Channel | https://www.youtube.com/@DataHubCloud |
| 📝 Blog | https://datahub.com/blog/ |
| https://www.linkedin.com/company/72009941 | |
| 🐦 Twitter/X | https://twitter.com/datahubproject |
| 🔒 Security | https://docs.datahub.com/docs/security |
DataHub is open source software released under the Apache License 2.0.
Copyright 2015-2026 LinkedIn Corporation
Copyright 2025-Present DataHub Project Contributors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
What this means:
Learn more: Choose a License - Apache 2.0
⭐ If you find DataHub useful, please star the repository! ⭐
Made with ❤️ by the DataHub community
(top 30 of 411)
Python
44.0%
Java
37.5%
TypeScript
17.7%
The Context Platform for your Data and AI Stack
12,672
stars
14,525
commits
Python
primary language
Sep 11, 2026
updated
Enterprise-grade metadata platform enabling discovery, governance, and observability across your entire data ecosystem
Free Cloud Trial • Quick Start • Live Demo • Documentation • Slack Community • YouTube
Built with ❤️ by DataHub and LinkedIn
Search, discover, and understand your data with DataHub's unified metadata platform
Ask data questions in plain English — get SQL, results, and charts back
Open-source agent grounded in your DataHub catalog. Apache 2.0. Bring your own LLM.
Quick start:
git clone https://github.com/datahub-project/analytics-agent.git
cd analytics-agent && bash quickstart.sh
Read the announcement → · Docs → · Repo →
Using AI coding assistants? Connect Cursor, Claude Desktop, or Cline directly to DataHub via the Model Context Protocol:
npx -y @acryldata/mcp-server-datahub init
🔍 Finding the right DataHub? This is the open-source metadata platform at datahub.com (GitHub: datahub-project/datahub). It was previously hosted at
datahubproject.io, which now redirects to datahub.com. This project is not related to datahub.io, which is a separate public dataset hosting service. See the FAQ below.
DataHub is the #1 open-source AI data catalog that enables discovery, governance, and observability across your entire data ecosystem. Originally built at LinkedIn, DataHub now powers data discovery at thousands of organizations worldwide, managing millions of data assets.
The Challenge: Modern data stacks are fragmented across dozens of tools—warehouses, lakes, BI platforms, ML systems, AI agents, orchestration engines. Finding the right data, understanding its lineage, and ensuring governance is like searching through a maze blindfolded.
The DataHub Solution: DataHub acts as the central nervous system for your data stack—connecting all your tools through real-time streaming or batch ingestion to create a unified metadata graph. Unlike static catalogs, DataHub keeps your metadata fresh and actionable—powering both human teams and AI agents.

Essential for modern data teams and reliable AI agents:
No. datahub.io is a completely separate project — a public dataset hosting service with no affiliation to this project. DataHub (this project) is an open-source metadata platform for data discovery, governance, and observability, hosted at datahub.com and developed at github.com/datahub-project/datahub.
DataHub was previously hosted at datahubproject.io. That domain now redirects to datahub.com. All documentation has moved to docs.datahub.com. If you find references to datahubproject.io in blog posts or tutorials, they refer to this same project — just under its former domain.
Yes. DataHub was originally built at LinkedIn to manage metadata at scale across their data ecosystem. LinkedIn open-sourced DataHub in 2020. It has since grown into an independent community project under the datahub-project GitHub organization, now hosted at datahub.com.
# macOS / Linux (simplest)
brew install datahub-project/tap/datahub
# Or via pip (any platform)
pip install acryl-datahub
datahub docker quickstart
See the Quick Start section below for full instructions. The PyPI package is acryl-datahub; the Homebrew tap is datahub-project/homebrew-tap.
🔍 Universal Search |
📊 Column-Level Lineage |
📋 Rich Dataset Profiles |
🏛️ Governance Dashboard |
▶️ Watch DataHub in Action:
No installation required. Explore a fully-loaded DataHub instance with sample data instantly:
🌐 Launch Live Demo: demo.datahub.com
Get DataHub running on your machine in under 2 minutes.
Prerequisites: Docker Desktop with 8GB+ RAM allocated.
Install the DataHub CLI using either Homebrew (macOS / Linux) or pip:
# Homebrew (macOS / Linux)
brew install datahub-project/tap/datahub
# Or pip (any platform)
python3 -m pip install --upgrade pip wheel setuptools
python3 -m pip install --upgrade acryl-datahub
Then launch DataHub locally via Docker:
datahub docker quickstart
# Access DataHub at http://localhost:9002
# Default credentials: datahub / datahub
Note: For pip, you can also use uv or other Python package managers.
What's included:
Best for advanced users who want to modify the core codebase or run directly from the repository:
# Clone the repository
git clone https://github.com/datahub-project/datahub.git
cd datahub
# One-time setup (Python CLI + dev tooling)
scripts/dev/datahub-dev.sh setup
# Start DataHub (Gradle profiles under docker/profiles)
scripts/dev/datahub-dev.sh start
# Access DataHub at http://localhost:9002
# Default credentials: datahub / datahub
DataHub supports three deployment models:
→ See all deployment guides (AWS, Azure, GCP, environment variables)
→ Full architecture breakdown: components, storage layer, APIs, and design decisions
Use Case: Extract table metadata, column schemas, and usage statistics from Snowflake data warehouse.
Prerequisites:
pip install 'acryl-datahub[snowflake]')# snowflake_recipe.yml
source:
type: snowflake
config:
# Connection details
account_id: "xy12345.us-east-1"
warehouse: "COMPUTE_WH"
username: "${SNOWFLAKE_USER}"
password: "${SNOWFLAKE_PASSWORD}"
# Optional: Filter specific databases
database_pattern:
allow:
- "ANALYTICS_DB"
- "MARKETING_DB"
sink:
type: datahub-rest
config:
server: "http://localhost:8080"
# Run ingestion
datahub ingest -c snowflake_recipe.yml
# Expected output:
# ✓ Connecting to Snowflake...
# ✓ Discovered 150 tables in ANALYTICS_DB
# ✓ Discovered 75 tables in MARKETING_DB
# ✓ Ingesting metadata...
# ✓ Successfully ingested 225 datasets to DataHub
What gets ingested:
Use Case: Programmatically search DataHub catalog and retrieve dataset metadata.
Prerequisites:
pip install 'acryl-datahub[datahub-rest]')from datahub.ingestion.graph.client import DatahubClientConfig, DataHubGraph
# Initialize DataHub client
config = DatahubClientConfig(server="http://localhost:8080")
graph = DataHubGraph(config)
# Search for datasets containing "customer"
urns = graph.get_urns_by_filter(
entity_types=["dataset"],
query="customer",
)
for urn in urns:
print(f"Found: {urn}")
# Example output:
# Found: urn:li:dataset:(urn:li:dataPlatform:snowflake,analytics.customer_profiles,PROD)
# Found: urn:li:dataset:(urn:li:dataPlatform:bigquery,marketing.customer_segments,PROD)
Response format: Each result is a URN string uniquely identifying the dataset. Use the URN to fetch full metadata via the GraphQL or REST API.
Use Case: Retrieve upstream and downstream dependencies for a specific dataset.
Prerequisites:
GraphQL Query:
query GetLineage {
dataset(
urn: "urn:li:dataset:(urn:li:dataPlatform:snowflake,analytics.customer_profiles,PROD)"
) {
# Get upstream dependencies (source tables)
upstream: lineage(input: { direction: UPSTREAM }) {
entities {
urn
... on Dataset {
name
platform {
name
}
}
}
}
# Get downstream dependencies (consuming tables/dashboards)
downstream: lineage(input: { direction: DOWNSTREAM }) {
entities {
urn
type
... on Dataset {
name
platform {
name
}
}
... on Dashboard {
dashboardId
tool
}
}
}
}
}
Execute via cURL:
curl -X POST http://localhost:8080/api/graphql \
-H "Content-Type: application/json" \
-d '{"query": "query GetLineage { ... }"}'
Response structure:
upstream: Array of datasets that feed into this datasetdownstream: Array of datasets, dashboards, or ML models that consume this datasetUse Case: Programmatically add or update dataset documentation and custom properties.
Prerequisites:
from datahub.metadata.schema_classes import DatasetPropertiesClass
from datahub.emitter.mce_builder import make_dataset_urn
from datahub.emitter.rest_emitter import DatahubRestEmitter
# Create emitter to send metadata to DataHub
emitter = DatahubRestEmitter("http://localhost:8080")
# Create dataset URN (unique identifier)
dataset_urn = make_dataset_urn(
platform="snowflake",
name="analytics.customer_profiles",
env="PROD"
)
# Define dataset properties
properties = DatasetPropertiesClass(
description="""
Customer profiles aggregated from CRM and transaction data.
**Update Schedule:** Updated nightly via Airflow DAG `customer_profile_etl`
**Data Retention:** 7 years for compliance
**Owner:** Data Platform Team
""",
customProperties={
"owner_team": "data-platform",
"update_frequency": "daily",
"data_sensitivity": "PII",
"upstream_dag": "customer_profile_etl",
"business_domain": "customer_analytics"
}
)
# Emit metadata to DataHub
emitter.emit_mcp(
entityUrn=dataset_urn,
aspectName="datasetProperties",
aspect=properties
)
print(f"✓ Successfully updated documentation for {dataset_urn}")
What this does:
Use Case: Enable AI agents (Cursor, Claude Desktop, Cline) to query DataHub metadata directly from your IDE or development environment.
Prerequisites:
Quick Setup:
# Initialize MCP server for DataHub
npx -y @acryldata/mcp-server-datahub init
# Follow the interactive prompts to configure:
# - DataHub GMS endpoint (e.g., http://localhost:8080)
# - Authentication token (if required)
# - MCP server settings
Configure your AI tool:
For Claude Desktop, add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"datahub": {
"command": "npx",
"args": ["-y", "@acryldata/mcp-server-datahub"]
}
}
}
For Cursor, configure in Settings → Features → MCP Servers
What you can ask your AI:
Example conversation:
You: "What datasets are owned by the data-platform team?"
AI: Based on DataHub metadata, here are the datasets owned by data-platform:
- urn:li:dataset:(urn:li:dataPlatform:snowflake,analytics.customer_profiles,PROD)
Name: customer_profiles
Platform: Snowflake
Description: Aggregated customer data from CRM and transactions
- urn:li:dataset:(urn:li:dataPlatform:bigquery,marketing.campaign_performance,PROD)
Name: campaign_performance
Platform: BigQuery
Description: Marketing campaign metrics and ROI tracking
[... more results]
Benefits:
📖 Full Documentation: MCP Server for DataHub
| Use Case | Description | Learn More |
|---|---|---|
| 🔍 Data Discovery | Help users find the right data for analytics and ML | Guide |
| 📊 Impact Analysis | Understand downstream impact before making changes | Lineage Docs |
| 🏛️ Data Governance | Enforce policies, classify PII, manage access | Governance Guide |
| 🔔 Data Quality | Monitor freshness, volumes, schema changes | Quality Checks |
| 📚 Documentation | Centralize data documentation and knowledge | Docs Features |
| 👥 Collaboration | Foster data culture with discussions and ownership | Collaboration |
Learn from teams using DataHub in production and get practical guidance:
🏆 Best Practices from the FieldReal-world metadata strategies from teams at Grab, Slack, and Checkout.com who manage data at scale. Case Studies |
📋 Data Contracts: How to Use ThemPractical guide to implementing data contracts between producers and consumers for quality and accountability. Implementation Guide |
🤖 How Block Powers AI Agents with DataHubReal-world case study: scaling data governance and AI operations across 50+ platforms using MCP. AI Case Study |
→ Explore all posts on our blog
3,000+ organizations run DataHub in production worldwide — across both open-source deployments and DataHub Cloud — from hyperscale tech companies to regulated financial institutions and healthcare providers.
🛒 E-Commerce & Retail: Etsy • Experius • Klarna • LinkedIn • MediaMarkt Saturn • Uphold • Wealthsimple • Wolt
🏥 Healthcare & Life Sciences: CVS Health • IOMED • Optum
✈️ Travel & Transportation: Cabify • DFDS • Expedia Group • Hurb • Peloton • Viasat
📚 Education & EdTech: ClassDojo • Coursera • Udemy
💰 Financial Services: Banksalad • Block • Chime • FIS • Funding Circle • GEICO • Inter&Co • N26 • Santander • Shanghai HuaRui Bank • Stash • Visa
🎮 Gaming, Entertainment & Streaming: Netflix • Razer • Showroomprive • TypeForm • UKEN Games • Zynga
🚀 Technology & SaaS: Adevinta • Apple • Digital Turbine • DPG Media • Foursquare • Geotab • HashiCorp • hipages • inovex • KPN • Miro • MYOB • Notion • Okta • Rippling • Saxo Bank • Slack • ThoughtWorks • Twilio • Wikimedia • WP Engine
📊 Data & Analytics: ABLY • DefinedCrowd • Grofers • Haibo Technology • Moloco • PITS Global Data Recovery Services • SpotHero
And thousands more across DataHub Core and DataHub Cloud.
Using DataHub? Please feel free to add your organization to the list if we missed it — open a PR or let us know on Slack.
DataHub is part of a rich ecosystem of tools and integrations.
| Repository | Description | Links |
|---|---|---|
| datahub | Core platform: metadata model, services, connectors, and web UI | Docs |
| datahub-actions | Framework for responding to metadata changes in real-time | Guide |
| datahub-helm | Production-ready Helm charts for Kubernetes deployment | Charts |
| static-assets | Logos, images, and brand assets for DataHub | - |
| Project | Description | Maintainer |
|---|---|---|
| datahub-tools | Python tools for GraphQL endpoint interaction | Notion |
| dbt-impact-action | GitHub Action for dbt change impact analysis | Acryl Data |
| business-glossary-sync-action | Sync business glossary via GitHub PRs | Acryl Data |
| mcp-server-datahub | Model Context Protocol server for AI integration | Acryl Data |
| meta-world | Recipes, custom sources, and transformations | Community |
📊 BI & Analytics: Tableau • Looker • Power BI • Superset • Metabase • Mode • Redash
🗄️ Data Warehouses: Snowflake • BigQuery • Redshift • Databricks • Synapse • ClickHouse
🔄 Data Orchestration: Airflow • dbt • Dagster • Prefect • Luigi
🤖 ML Platforms: SageMaker • MLflow • Feast • Kubeflow • Weights & Biases
🔗 Data Integration: Fivetran • Airbyte • Stitch • Matillion
Join thousands of data practitioners building with DataHub!
Monthly community calls with roadmap updates, live demos, and user case studies.
| Channel | Purpose | Link |
|---|---|---|
| Slack Community | Real-time chat, questions, announcements | Join 16,000+ members |
| GitHub Discussions | Technical discussions, feature requests | Start a Discussion |
| GitHub Issues | Bug reports, feature requests | Open an Issue |
| Stack Overflow | Technical Q&A (tag: datahub) | Ask a Question |
| YouTube | Tutorials, demos, talks | Subscribe |
| Company updates, blogs | Follow Us | |
| Twitter/X | Quick updates, community highlights | Follow @datahubproject |
We ❤️ contributions from the community! See CONTRIBUTING.md for setup, guidelines, and ways to get involved.
Browse Good First Issues to get started!
Blog Posts & Articles:
Conference Talks:
Podcasts:
| Resource | URL |
|---|---|
| 📖 Official Documentation | https://docs.datahub.com |
| 🏠 Project Website | https://datahub.com |
| 🌐 Live Demo | https://demo.datahub.com |
| 📊 Feature Requests | https://support.datahub.com/hc/en-us/requests/new |
| 🗓️ Town Hall Schedule | https://docs.datahub.com/docs/townhalls |
| 💬 Slack Community | https://datahub.com/slack |
| 📺 YouTube Channel | https://www.youtube.com/@DataHubCloud |
| 📝 Blog | https://datahub.com/blog/ |
| https://www.linkedin.com/company/72009941 | |
| 🐦 Twitter/X | https://twitter.com/datahubproject |
| 🔒 Security | https://docs.datahub.com/docs/security |
DataHub is open source software released under the Apache License 2.0.
Copyright 2015-2026 LinkedIn Corporation
Copyright 2025-Present DataHub Project Contributors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
What this means:
Learn more: Choose a License - Apache 2.0
⭐ If you find DataHub useful, please star the repository! ⭐
Made with ❤️ by the DataHub community
(top 30 of 411)
Python
44.0%
Java
37.5%
TypeScript
17.7%