Devpipe MCP Server
Enables AI assistants to interact with devpipe, a local pipeline runner, allowing them to list tasks, run pipelines, validate configurations, debug failures, analyze security findings, and generate CI/CD configs through natural language.
README
Devpipe MCP Server
A Model Context Protocol (MCP) server that enables AI assistants to interact with devpipe - a fast, local pipeline runner for development workflows.
Features
This MCP server provides AI assistants with the ability to:
- š List and analyze tasks from devpipe configurations (with verbose stats)
- š Run pipelines with full control over execution flags
- ā Validate configurations before running
- š Access run results and metrics (JUnit, SARIF)
- š Debug failures by reading task logs
- š” Suggest optimizations for pipeline configurations
- š”ļø Review security findings from SARIF reports
- š§ Auto-detect technologies and suggest missing tasks
- ā” Generate task configurations from templates
- š Create complete configs from scratch
- š Generate CI/CD configs (GitHub Actions, GitLab CI)
Prerequisites
-
Node.js 18 or higher
-
devpipe v0.0.8 or higher installed and accessible in PATH
brew install drewkhoury/tap/devpipeNote: This MCP is optimized for devpipe v0.0.8+ which includes updated default values and improved documentation.
Installation
Option 1: Install from npm (recommended)
npm install -g devpipe-mcp
Option 2: Install from source
git clone https://github.com/drewkhoury/devpipe-mcp.git
cd devpipe-mcp
npm install
npm run build
npm link
Configuration
For Windsurf/Cascade
Add to your Windsurf MCP settings file (usually ~/.windsurf/mcp.json or similar):
{
"mcpServers": {
"devpipe": {
"command": "devpipe-mcp"
}
}
}
For Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"devpipe": {
"command": "devpipe-mcp"
}
}
}
For Other MCP Clients
The server runs on stdio, so you can connect any MCP client using:
devpipe-mcp
Usage
Once configured, you can interact with devpipe through your AI assistant. Here are some example requests:
List Tasks
"Show me all the tasks in my devpipe configuration"
"What tasks are defined in config.toml?"
Run Pipeline
"Run the devpipe pipeline"
"Run only the lint and test tasks"
"Run devpipe with --fast and --fail-fast flags"
"Execute devpipe in dry-run mode"
Validate Configuration
"Validate my devpipe config"
"Check if config.toml is valid"
Debug Failures
"Why did the lint task fail?"
"Show me the logs for the build task"
"What went wrong in the last run?"
Analyze and Optimize
"Analyze my pipeline configuration"
"Suggest optimizations for my devpipe setup"
"How can I make my pipeline faster?"
Create Tasks
"Create a devpipe task for running Go tests"
"Help me add a Python linting task"
"Generate a task configuration for ESLint"
Bootstrap New Projects
"Create a devpipe config for this project"
"Analyze my project and suggest tasks"
"What technologies did you detect in /path/to/project?"
Generate CI/CD
"Generate a GitHub Actions workflow for devpipe"
"Create a GitLab CI config from my devpipe setup"
Security Review
"Review the security findings from my last run"
"What security issues were found?"
"Analyze SARIF results"
MCP Tools
The server provides the following tools:
list_tasks
Parse and list all tasks from a config.toml file.
Parameters:
config(optional): Path to config.toml file
Example:
{
"config": "./config.toml"
}
run_pipeline
Execute devpipe with specified flags.
Parameters:
config(optional): Path to config.tomlonly(optional): Array of task IDs to runskip(optional): Array of task IDs to skipsince(optional): Git reference for change-based runsfixType(optional):auto,helper, ornoneui(optional):basicorfulldashboard(optional): Show dashboard viewfailFast(optional): Stop on first failurefast(optional): Skip slow tasksdryRun(optional): Show what would runverbose(optional): Verbose outputnoColor(optional): Disable colors
Example:
{
"only": ["lint", "test"],
"fast": true,
"failFast": true
}
validate_config
Validate devpipe configuration files.
Parameters:
configs(optional): Array of config file paths
Example:
{
"configs": ["config.toml", "config.prod.toml"]
}
get_last_run
Get results from the most recent pipeline run.
Parameters:
config(optional): Path to config.toml
view_run_logs
Read logs from a specific task or the entire pipeline.
Parameters:
taskId(optional): Task ID to view logs forconfig(optional): Path to config.toml
Example:
{
"taskId": "lint"
}
parse_metrics
Parse JUnit or SARIF metrics files.
Parameters:
metricsPath(required): Path to metrics fileformat(required):junitorsarif
Example:
{
"metricsPath": ".devpipe/runs/latest/metrics.sarif",
"format": "sarif"
}
get_dashboard_data
Extract aggregated data from summary.json.
Parameters:
config(optional): Path to config.toml
check_devpipe
Check if devpipe is installed and get version info.
list_tasks_verbose
List tasks using devpipe list --verbose command with execution statistics.
Parameters:
config(optional): Path to config.toml file
Example:
{
"config": "./config.toml"
}
Output: Shows task table with average execution times and statistics.
analyze_project
Analyze project directory to detect technologies and suggest missing tasks.
Parameters:
projectPath(optional): Path to project directory (defaults to current)
Example:
{
"projectPath": "/path/to/project"
}
Output:
{
"projectPath": "/path/to/project",
"detectedTechnologies": ["Go", "Docker"],
"suggestedTasks": [
{
"technology": "Go",
"taskType": "check-format",
"reason": "go fmt for formatting"
},
{
"technology": "Go",
"taskType": "check-lint",
"reason": "golangci-lint for linting"
}
],
"summary": "Found 2 technologies with 5 suggested tasks"
}
generate_task
Generate task configuration from template for a specific technology or phase header.
Parameters:
technology(required): Technology name (e.g., "Go", "Python", "Node.js", "TypeScript", "Rust") or "phase" for phase headerstaskType(required): Task type (e.g., "check-format", "check-lint", "test-unit", "build") or phase nametaskId(optional): Custom task ID for regular tasks, or description for phase headers
Example (Regular Task):
{
"technology": "Go",
"taskType": "check-lint",
"taskId": "golangci-lint"
}
Output:
[tasks.golangci-lint]
name = "Golang CI Lint"
desc = "Runs comprehensive linting on Go code"
type = "check"
command = "golangci-lint run"
fixType = "auto"
fixCommand = "golangci-lint run --fix"
Example (Phase Header):
{
"technology": "phase",
"taskType": "Validation",
"taskId": "Static analysis and tests"
}
Output:
[tasks.phase-validation]
name = "Validation"
desc = "Static analysis and tests"
Note: Phase headers have no required fields - they're organizational markers. Common practice is to include name or desc (or both), but neither is strictly required.
Supported Technologies:
- Go: check-format, check-lint, check-static, test-unit, build
- Python: check-format, check-lint, check-types, test-unit
- Node.js: check-lint, test-unit, build
- TypeScript: check-types
- phase: Creates phase headers (organizational markers, no command/type)
create_config
Create a complete config.toml file from scratch with auto-detected tasks.
Parameters:
projectPath(optional): Path to project directory (defaults to current)includeDefaults(optional): Include [defaults] section (default: true)autoDetect(optional): Auto-detect technologies and generate tasks (default: true)
Example:
{
"projectPath": "/path/to/project",
"includeDefaults": true,
"autoDetect": true
}
Output: Complete config.toml with:
- Defaults section (outputRoot, fastThreshold=300s, animationRefreshMs=500ms, git settings)
- Task defaults (enabled, workdir)
- Auto-detected tasks organized by phase
- Ready-to-use TOML configuration compatible with devpipe v0.0.8+
Use Case: Bootstrap a new project with devpipe configuration.
Note: Generated configs use devpipe v0.0.8 defaults (fastThreshold=300s, not 5000ms).
generate_ci_config
Generate CI/CD configuration file (GitHub Actions or GitLab CI) from devpipe config.
Parameters:
config(optional): Path to config.toml fileplatform(required):githuborgitlab
Example:
{
"config": "./config.toml",
"platform": "github"
}
Output (GitHub Actions):
name: CI Pipeline
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
devpipe:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install devpipe
run: |
curl -L https://github.com/drewkhoury/devpipe/releases/latest/download/devpipe-linux-amd64 -o devpipe
chmod +x devpipe
sudo mv devpipe /usr/local/bin/
- name: Run devpipe
run: devpipe --fail-fast
- name: Upload results
if: always()
uses: actions/upload-artifact@v4
with:
name: devpipe-results
path: .devpipe/
MCP Resources
The server exposes these resources:
devpipe://config- Current config.toml contentsdevpipe://tasks- All task definitionsdevpipe://last-run- Most recent run resultsdevpipe://summary- Aggregated pipeline summarydevpipe://schema- JSON Schema for config.toml validation (fetched from official devpipe repo)
MCP Prompts
Pre-configured prompts for common workflows:
analyze-config
Analyze the devpipe configuration and suggest improvements.
debug-failure
Help debug why a specific task failed.
Arguments:
taskId(required): The task that failed
optimize-pipeline
Suggest optimizations for the pipeline.
create-task
Help create a new task for a technology.
Arguments:
technology(required): Technology name (e.g., "Go", "Python")taskType(optional):check,build, ortest
security-review
Review SARIF security findings and provide recommendations.
Examples
See EXAMPLES.md for detailed usage examples and workflows.
Quick Example
User: "Run my devpipe pipeline with fast mode"
Assistant: *Uses run_pipeline tool with { "fast": true }*
Result: Pipeline executes, skipping slow tasks
Development
Building from Source
git clone https://github.com/drewkhoury/devpipe-mcp.git
cd devpipe-mcp
npm install
npm run build
Project Structure
devpipe-mcp/
āāā src/
ā āāā index.ts # Main MCP server
ā āāā types.ts # Type definitions
ā āāā utils.ts # Utility functions
āāā examples/ # Example configs
āāā dist/ # Compiled output
āāā README.md
Watch Mode
npm run watch
Troubleshooting
devpipe not found
If you get "devpipe not found" errors:
# Install devpipe
brew install drewkhoury/tap/devpipe
# Verify installation
devpipe --version
Config file not found
The MCP server searches for config.toml in:
- Current directory
- Parent directories (up to root)
You can also specify the config path explicitly in tool calls.
Permission errors
Ensure the MCP server has permission to:
- Read config files
- Execute devpipe commands
- Access the
.devpipeoutput directory
Contributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
License
MIT License - see LICENSE file for details.
Related Projects
- devpipe - The pipeline runner this MCP server integrates with
- Model Context Protocol - The protocol specification
Support
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- devpipe: devpipe GitHub
Changelog
See CHANGELOG.md for version history and changes.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
E2B
Using MCP to run code via e2b.