Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"dagger": {
"type": "local",
"command": [
"dagger-mcp-server"
],
"enabled": true
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server that exposes Dagger CI/CD capabilities as tools for AI assistants.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops
MCP server for using the GitLab API
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
Enhanced MCP server for GitLab: group projects listing and activity tracking
MCP Server for kubernetes management commands
MCP Security Weekly
Get CVE alerts and security updates for Dagger Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that exposes Dagger CI/CD capabilities as tools for AI assistants.
| Tool | Description |
|---|---|
dagger_version | Get the installed Dagger version |
dagger_call | Run a Dagger function from a module |
dagger_functions | List all functions in a Dagger module |
dagger_build | Build a container image using Dagger |
dagger_query | Execute a Dagger GraphQL query |
dagger_shell | Run dagger shell with a command |
dagger_init | Initialize a new Dagger module |
dagger_go | Run Dagger with a Go module |
git clone https://github.com/user/dagger-mcp-server.git
cd dagger-mcp-server
cargo install --path .
Add to ~/.config/opencode/opencode.json:
{
"mcpServers": {
"dagger": {
"type": "local",
"command": ["dagger-mcp-server"],
"enabled": true
}
}
}
Add to Claude Desktop config:
{
"mcpServers": {
"dagger": {
"command": "dagger-mcp-server"
}
}
}
Add to Cursor MCP settings:
{
"mcpServers": {
"dagger": {
"command": "dagger-mcp-server"
}
}
}
Once configured, your AI assistant can:
# Check Dagger version
"What version of Dagger is installed?"
# List functions in a module
"Show me the available functions in ./my-dagger-module"
# Run a Dagger function
"Run the 'build' function in the ./ci module"
# Build and push an image
"Build using the 'container' function and push to ghcr.io/myorg/myapp:v1"
# Build
cargo build
# Run locally (stdio mode)
cargo run
# Test with Dagger
dagger version
cargo run
MIT