MCP Server
Currently, dltHub is building two MCP servers that you can run locally and integrate with your preferred IDE. One server is for the open-source dlt
library and the other integrates with dlt+
features (Learn more).
This page gives an overview of what we're building and includes detailed instructions to install the MCP in your favorite IDE.
π§ This feature is under development, and the interface may change in future releases. Interested in becoming an early tester? Join dlt+ early access.
Model Context Protocolβ
The Model Context Protocol (MCP) is a standard initiated by Anthropic to connect large language models (LLMs) to external data and systems.
In the context of the MCP, the client is built-in the user-facing application. The most common clients are LLM-enabled IDEs or extensions such as Continue, Cursor, Claude Desktop, Cline, etc. The server is a process that handles requests to interact with external data and systems.
Core constructsβ
-
Resources are data objects that can be retrieved by the client and added to the context (i.e., prompt) of the LLM request. Resources will be manually selected by the user, or certain clients will automatically retrieved them.
-
Tools provided a way to execute code and provide information to the LLM. Tools are called by the LLM; they can't be selected by the user or the client.
-
Prompts are strings, or templated strings, that can be injected in the conversation. Prompts are selected by the user. They provide shortcuts for frequent commands, or allow to ask the LLMs to use specific tools.
The MCP is progressively being adopted and not all clients support all the features used by the dlt MCP server. See this page for an overview of client capabilities
Featuresβ
The dlt and dlt+ MCP servers aim to be a toolbox to help developers build, maintain, and operate dlt
pipelines. There are two primary avenues:
-
Code generation: LLMs are good at writing Python code, but they don't know everything about
dlt
. The MCP provides resources and tools to provide up-to-date information to the LLm about the dlt library and the specifics of your project. -
Assistance: The MCP resources, tools, and prompts can also be used to learn more about
dlt
. The built-in knowledgebase combined with your project's context brings Q&A support inside your IDE.
The next sections are a non-exhaustive documentation of existing and upcoming features.
Toolsβ
-
Pipeline metadata: read your pipeline directory (default:
~/.dlt/pipelines
) to know available pipelines, available tables, table schemas. -
Operational metadata: read your pipeline directory to identify last load date, schema changes, load errors, and inspect load packages.
-
dlt configuration: use an instantiated pipeline to inspect the dlt configuration (sources, resources, destinations).
-
Datasets: connect to the destination and execute SQL queries to retrieve data tables via light text-to-SQL.
Resourcesβ
- LLM-optimized dlt documentation pages. These can be selected and added to your prompt to help the LLM generate valid
dlt
code.
Promptsβ
-
Tutorial-like instructions that puts the LLM in "assistant mode". For example, the LLM can ask you questions about your data and "think" with you to select the right loading strategy.
-
Command-like instructions that gives the LLM a task to complete. For example, the LLM can initialize a new pipeline. This is akin to a conversational command line tool.
Installationβ
The dlt
and dlt+
MCP servers are intended to run locally on your machine and communicate over standard I/O. Typically, the MCP server process is launched by the MCP client, i.e., the IDE. We will use the uv package manager to launch the MCP server.
The next sections include client-specific instructions, references, and snippets to configure the MCP server. They are mainly derived from this uv
command:
uv tool run --with "dlt-plus[mcp]==0.9.0" dlt mcp run
To explain each part:
- uv tool run executes the command in an isolated virtual environment
- the
--with PACKAGE_NAME
specify the Python dependencies required by the MCP server dlt-plus==0.9.0
pins a specificdlt-plus
version (where the MCP code lives). We suggest at least pinning thedlt-plus
version to provide a consistent experiencedlt mcp run
is a CLI command found in dlt+ that starts the dlt MCP server. Usedlt mcp run_plus
to
Then, to enable the MCP server and tool usage, several IDEs require you to enable "tool/agent/mcp mode".
dlt+ MCP serverβ
To run the dlt+
MCP server, you will need to set your dlt+ License globally in ~/.dlt/secrets.toml
or in an environment variable (must be set before lauching the IDE) and use dlt mcp run_plus
in your configuration. If the dlt+
license is missing, the dlt MCP server will be launched instead. You can tell the two apart by the tools, resources, and prompts availableΒ.
Continueβ
With Continue, you can use Continue Hub for a 1-click install of the MCP, or a local config file. Select Agent Mode
to enable the MCP server.
Continue Hubβ
See the dltHub page and select the dlt
or dlt+
Assistants. This bundles the MCP with additional Continue-specific features. You can also select the dlt
or dlt+
MCP blocks to install the server exclusively.
Localβ
You can define an assistant locally with the same YAML syntax as the Continue Hub by adding files to $PROJECT_ROOT/.continue/assistants
. This snippet creates an assistant with the MCP only.
# local_dlt.yaml
name: dlt MCP # can change
version: 0.0.1 # can change
schema: v1
mcpServers:
- name: dlt # can change
command: uv
args:
- tool
- run
- --with
- dlt-plus==0.9.0
- --with
- sqlglot
- --with
- pyarrow
- --with
- pandas
- --with
- duckdb
- --with
- mcp
- dlt
- mcp
- run
There's also a global configuration specs in JSON
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "uv",
"args": [
"tool",
"run",
"--with",
"dlt-plus[mcp]==0.9.0",
"dlt",
"mcp",
"run"
]
}
}
]
}
}
Claude Desktopβ
You need to add a JSON configuration file on your system. See our full Claude Desktop tutorial
{
"mcpServers": {
"dlt": {
"command": "uv",
"args": [
"tool",
"run",
"--with",
"dlt-plus[mcp]==0.9.0",
"dlt",
"mcp",
"run"
]
}
}
}
Cursorβ
Select Agent Mode to enable the MCP server. The configuration follows the same JSON specs as Claude Desktop
{
"mcpServers": {
"dlt": {
"command": "uv",
"args": [
"tool",
"run",
"--with",
"dlt-plus[mcp]==0.9.0",
"dlt",
"mcp",
"run"
]
}
}
}
Clineβ
Follow this tutorial to use the IDE's menu to add MCP servers.