dbt-mcp
MCP server that provides tools to interact with dbt, including dbt Core, Cloud CLI, Semantic Layer, and Discovery API.
README
dbt MCP Server
This MCP (Model Context Protocol) server provides tools to interact with dbt. Read this blog to learn more. Add comments or questions to GitHub Issues or join us in the community Slack in the #tools-dbt-mcp channel.
Architecture

Setup
- Install uv
- Copy the
.env.examplefile locally under a file called.envand set it with your specific environment variables (see theConfigurationsection of theREADME.md)
Configuration
The MCP server takes the following environment variable configuration:
Tool Groups
| Name | Default | Description |
|---|---|---|
DISABLE_DBT_CLI |
false |
Set this to true to disable dbt Core, dbt Cloud CLI, and dbt Fusion MCP tools |
DISABLE_SEMANTIC_LAYER |
false |
Set this to true to disable dbt Semantic Layer MCP objects |
DISABLE_DISCOVERY |
false |
Set this to true to disable dbt Discovery API MCP objects |
DISABLE_REMOTE |
true |
Set this to false to enable remote MCP objects |
DISABLE_TOOLS |
"" | Set this to a list of tool names delimited by a , to disable certain tools |
Configuration for Discovery, Semantic Layer, and Remote Tools
| Name | Default | Description |
|---|---|---|
DBT_HOST |
cloud.getdbt.com |
Your dbt Cloud instance hostname. This will look like an Access URL found here. If you are using Multi-cell, do not include the ACCOUNT_PREFIX here |
MULTICELL_ACCOUNT_PREFIX |
- | If you are using Multi-cell, set this to your ACCOUNT_PREFIX. If you are not using Multi-cell, do not set this environment variable. You can learn more here |
DBT_TOKEN |
- | Your personal access token or service token. Note: a service token is required when using the Semantic Layer and this service token should have at least Semantic Layer Only, Metadata Only, and Developer permissions. |
DBT_PROD_ENV_ID |
- | Your dbt Cloud production environment ID |
Configuration for Remote Tools
| Name | Description |
|---|---|
DBT_DEV_ENV_ID |
Your dbt Cloud development environment ID |
DBT_USER_ID |
Your dbt Cloud user ID |
Configuration for dbt CLI
| Name | Description |
|---|---|
DBT_PROJECT_DIR |
The path to where the repository of your dbt Project is hosted locally. This should look something like /Users/firstnamelastname/reponame |
DBT_PATH |
The path to your dbt Core, dbt Cloud CLI, or dbt Fusion executable. You can find your dbt executable by running which dbt |
DBT_CLI_TIMEOUT |
Configure the number of seconds before your agent will timeout dbt CLI commands. Defaults to 10 seconds. |
It is also possible to set any environment variable supported by your dbt executable (see here for the ones supported in dbt Core).
We automatically set DBT_WARN_ERROR_OPTIONS='{"error": ["NoNodesForSelectionCriteria"]}' so that the MCP server knows if no node is selected when running a dbt command.
You can overwrite it if needed but we believe that it provides a better experience when calling dbt from the MCP server, making sure that the tool is selecting valid nodes.
Using with MCP Clients
After going through the Setup, you can use dbt-mcp with an MCP client.
Add this configuration to the respective client's config file. Be sure to replace the sections within <>:
{
"mcpServers": {
"dbt-mcp": {
"command": "uvx",
"args": [
"--env-file",
"<path-to-.env-file>",
"dbt-mcp"
]
},
}
}
<path-to-.env-file> is where you saved the .env file from the Setup step
Claude Code
Run the following command to add the MCP server to Claude Code:
claude mcp add dbt -- uvx --env-file <path-to-.env-file> dbt-mcp
By default the MCP server is installed in the "local" scope, meaning that it will be active for Claude Code sessions in the current directory for the user who installed it.
It is also possible to install the MCP server:
- in the "user" scope, to have it installed for all Claude Code sessions, independently of the directory used
- in the "project" scope, to create a config file that can be version controlled so that all developers of the same project can have the MCP server already installed
To install it in the project scope, run the following and and commit the .mcp.json file. Be sure to use an env var file path that is the same for all users.
claude mcp add dbt -s project -- uvx --env-file <path-to-.env-file> dbt-mcp
More info on scopes here
Claude Desktop
Follow these instructions to create the claude_desktop_config.json file and connect.
For debugging, you can find the Claude Desktop logs at ~/Library/Logs/Claude for Mac or %APPDATA%\Claude\logs for Windows.
Cursor
Note the configuration options here and input your selections with this link:
<a href="https://cursor.com/install-mcp?name=dbt&config=eyJjb21tYW5kIjoidXZ4IGRidC1tY3AiLCJlbnYiOnsiREJUX0hPU1QiOiJjbG91ZC5nZXRkYnQuY29tIiwiTVVMVElDRUxMX0FDQ09VTlRfUFJFRklYIjoib3B0aW9uYWwtYWNjb3VudC1wcmVmaXgiLCJEQlRfVE9LRU4iOiJ5b3VyLXNlcnZpY2UtdG9rZW4iLCJEQlRfUFJPRF9FTlZfSUQiOiJ5b3VyLXByb2R1Y3Rpb24tZW52aXJvbm1lbnQtaWQiLCJEQlRfREVWX0VOVl9JRCI6InlvdXItZGV2ZWxvcG1lbnQtZW52aXJvbm1lbnQtaWQiLCJEQlRfVVNFUl9JRCI6InlvdXItdXNlci1pZCIsIkRCVF9QUk9KRUNUX0RJUiI6Ii9wYXRoL3RvL3lvdXIvZGJ0L3Byb2plY3QiLCJEQlRfUEFUSCI6Ii9wYXRoL3RvL3lvdXIvZGJ0L2V4ZWN1dGFibGUiLCJESVNBQkxFX0RCVF9DTEkiOiJmYWxzZSIsIkRJU0FCTEVfU0VNQU5USUNfTEFZRVIiOiJmYWxzZSIsIkRJU0FCTEVfRElTQ09WRVJZIjoiZmFsc2UiLCJESVNBQkxFX1JFTU9URSI6ImZhbHNlIn19"><img src="https://cursor.com/deeplink/mcp-install-dark.svg" alt="Add dbt MCP server to Cursor" height="32" /></a>
Cursor MCP docs here for reference
VS Code
-
Open the Settings menu (Command + Comma) and select the correct tab atop the page for your use case
Workspace- configures the server in the context of your workspaceUser- configures the server in the context of your user- Note for WSL users: If you're using VS Code with WSL, you'll need to configure WSL-specific settings. Run the Preferences: Open Remote Settings command from the Command Palette (F1) or select the Remote tab in the Settings editor. Local User settings are reused in WSL but can be overridden with WSL-specific settings. Configuring MCP servers in the local User settings will not work properly in a WSL environment.
-
Select Features → Chat
-
Ensure that "Mcp" is
Enabled
-
Open the command palette
Control/Command + Shift + P, and select either "MCP: Open Workspace Folder MCP Configuration" or "MCP: Open User Configuration" depending on whether you want to install the MCP server for this workspace or for all workspaces for the user -
Add your server configuration (
dbt) to the providedmcp.jsonfile as one of the servers:
{
"servers": {
"dbt": {
"command": "uvx",
"args": [
"--env-file",
"<path-to-.env-file>",
"dbt-mcp"
]
}
}
}
<path-to-.env-file> is where you saved the .env file from the Setup step
- You can start, stop, and configure your MCP servers by:
- Running the
MCP: List Serverscommand from the Command Palette (Control/Command + Shift + P) and selecting the server - Utlizing the keywords inline within the
mcp.jsonfile
VS Code MCP docs here for reference
Troubleshooting
- Some MCP clients may be unable to find
uvxfrom the JSON config. If this happens, try finding the full path touvxwithwhich uvxon Unix systems and placing this full path in the JSON. For instance:"command": "/the/full/path/to/uvx".
Tools
dbt CLI
build- Executes models, tests, snapshots, and seeds in dependency ordercompile- Generates executable SQL from models, tests, and analyses without running themdocs- Generates documentation for the dbt projectls(list) - Lists resources in the dbt project, such as models and testsparse- Parses and validates the project’s files for syntax correctnessrun- Executes models to materialize them in the databasetest- Runs tests to validate data and model integrityshow- Runs a query against the data warehouse
Allowing your client to utilize dbt commands through this MCP tooling could modify your data models, sources, and warehouse objects. Proceed only if you trust the client and understand the potential impact.
Semantic Layer
list_metrics- Retrieves all defined metricsget_dimensions- Gets dimensions associated with specified metricsget_entities- Gets entities associated with specified metricsquery_metrics- Queries metrics with optional grouping, ordering, filtering, and limiting
Discovery
get_mart_models- Gets all mart modelsget_all_models- Gets all modelsget_model_details- Gets details for a specific modelget_model_parents- Gets parent nodes of a specific modelget_model_children- Gets children modes of a specific model
Remote
text_to_sql- Generate SQL from natural language requestsexecute_sql- Execute SQL on dbt Cloud's backend infrastructure with support for Semantic Layer SQL syntax. Note: using a PAT instead of a service token forDBT_TOKENis required for this tool.
Contributing
Read CONTRIBUTING.md for instructions on how to get involved!
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。