drio
Open app

MCP Server for PipeCD

Source

An MCP Server for PipeCD

Catalog onlyCatalog onlySTDIO

Overview

MCP Server for PipeCD is a server that implements the Model Context Protocol (MCP) to facilitate the integration and management of applications and their deployments within the PipeCD framework.

To use the MCP Server, follow the setup instructions provided in the documentation (to be written). Once set up, you can manage your application deployments through the PipeCD interface.

  • Integration with PipeCD for streamlined application management - Support for Model Context Protocol (MCP) - Facilitates deployment management and application lifecycle
  1. Managing application deployments in a CI/CD pipeline.
  2. Integrating various applications with PipeCD for better deployment strategies.
  3. Utilizing MCP for context-aware application management.

Add to your AI client

Use these steps to connect MCP Server for PipeCD in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

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

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

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

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

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

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

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

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

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

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

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

FAQ

What is the Model Context Protocol (MCP)?

MCP is a protocol designed to provide context-aware management of applications and their deployments.

Is there a setup guide available?

Yes, a setup guide will be provided in the documentation.

What programming language is used for this project?

The MCP Server for PipeCD is developed in Go.