1. Conduid
  2. Developer Tools
  3. Dlt MCP
MCP server · Developer Tools

Dlt MCP

MCP server for the Python library dlt

Unclaimed Apache-2.0 last commit 6 months ago devtoolsdltmcpetleltdata-engineeringpython
59Fair

Scored 15 hours ago · breakdown

About Dlt MCP

Dlt MCP is an MCP server published by dlt-hub in the Developer Tools category: mCP server for the Python library dlt. It has been installed 0 times through Conduid.

The repository has 6 stars and 0 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx dlt-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Dlt MCP

Powered by Claude · Grounded in docs

I know everything about Dlt MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.1.0v0.1.0
0.3.00.3.0
0.2.00.2.0
0.1.00.1.0
0.0.40.0.4

README

How is it useful?

Large language models (LLMs) know a lot about the world, but nothing about your specific code and data.

The Model Context Protocol (MCP) server allows the LLM to retrieve up-to-date and correct information about your dlt pipelines, datasets, schema, etc. This significantly improves the development experience in AI-enabled IDEs (Copilot, Cursor, Continue, Claude Code, etc.)

Installation

The package manager uv is required to launch the MCP server.

Add this section to your MCP configuration file inside your IDE. Add your destination(s) in the extras dlt-mcp[...]

{
  "name": "dlt",
  "command": "uv",
  "args": [
    "run",
    "--with",
    "dlt-mcp[duckdb]",
    "dlt-mcp",
  ],
}

[!NOTE] The configuration file format varies slightly across IDEs

Features

Tools

The dlt MCP server provides tools that allows the LLM to take actions:

  • list_pipelines: Lists all available dlt pipelines. Each pipeline consists of several tables.
  • list_tables: Retrieves a list of all tables in the specified pipeline.
  • get_table_schemas: Returns the schema of the specified tables.
  • execute_sql_query: Executes a SELECT SQL statement for simple data analysis.
  • get_load_table: Retrieves metadata about data loaded with dlt.
  • get_pipeline_local_state: Fetches the state information of the pipeline, including incremental dates, resource state, and source state.
  • get_table_schema_diff: Compares the current schema of a table with another version and provides a diff.
  • search_docs: Searches over the dlt documentation using different modes (hybrid, full_text, or vector) to verify features and identify recommended patterns.
  • search_code: Searches the source code for the specified query and optional file path, providing insights into internal code structures and patterns.

README mirrored from the source repository 15 hours ago. The original is authoritative.

Questions

About Dlt MCP

How do I install Dlt MCP?

Run npx dlt-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Dlt MCP safe to use with an AI agent?

Its trust score is 59 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Dlt MCP still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.