D

Dagster

Query Dagster assets, jobs and runs.

·No reviews yet
Repo
Share:

About

Auto-generated

Dagster is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Dagster.

What is the Dagster MCP?
The Dagster MCP allows users to interact with Dagster assets, jobs, and runs. It is designed for orchestration and workflow management within a data and databases context.
How do I authenticate with the Dagster MCP?
Authentication for the Dagster MCP requires an API key. This key is used to secure access and authorize operations against your Dagster instance.
What is a typical use case for the Dagster MCP?
A common use case involves programmatically querying the status and details of Dagster assets, triggering jobs, or inspecting past runs. This facilitates integration with other data tools and automated reporting.
How can I install the Dagster MCP in a client like Cline?
Installation in a client like Cline typically involves adding the MCP to your client configuration. Since its transport is 'stdio', it functions via standard input/output, which may influence client-side setup.
Does the Dagster MCP incur costs?
The Dagster MCP itself is part of the Community offering and is likely open-source, so its direct cost is typically none. However, the underlying Dagster deployment and infrastructure it interacts with may incur costs depending on your setup.

Install Dagster

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "dagster": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dagster"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "dagster": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dagster"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "dagster": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dagster"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.