AgentStack
MCP verified Apache-2.0 Self-run

Project Copacetic Mcp Server

mcp-project-copacetic-mcp-server · by project-copacetic

MCP server from project-copacetic/mcp-server.

No reviews yet
0 installs
1 views
0.0% view→install

Install

$ agentstack add mcp-project-copacetic-mcp-server

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Project Copacetic Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

copacetic-mcp

> 📣 This project is not officially supported and may not receive updates.

A Model Context Protocol (MCP) server for automated container patching using Copacetic.

MCP Tools

This server provides the following Model Context Protocol (MCP) tools:

  • version: Get the version of the Copa CLI tool
  • workflow-guide: Get guidance on which Copacetic tools to use for different container patching scenarios
  • scan-container: Scan container images for vulnerabilities using Trivy - creates vulnerability reports required for report-based patching
  • patch-report-based: Patch container image vulnerabilities using a pre-generated vulnerability report from 'scan-container' tool (RECOMMENDED approach for vulnerability-based patching)
  • patch-platform-selective: Patch specific container image platforms with Copa - patches only the specified platforms WITHOUT vulnerability scanning
  • patch-comprehensive: Comprehensively patch all container image platforms with Copa - patches all available platforms WITHOUT vulnerability scanning

Installation

VSCode Setup

To use copacetic-mcp with VSCode, add the MCP server configuration to your mcp.json file.

Opening the MCP Configuration File:

  1. Open the Command Palette (Ctrl+Shift+P / Cmd+Shift+P)
  2. Choose one of these commands:
  • MCP: Open User Configuration - Configure for your user profile (applies to all workspaces)
  • MCP: Open Workspace Folder Configuration - Configure for the current workspace only

This will create or open your mcp.json file where you can add the following configuration:

{
  "servers": {
    "copaceticMcp": {
      "type": "stdio",
      "command": "/path/to/copacetic-mcp-server",
      "args": []
    }
  }
}

Replace /path/to/copacetic-mcp-server with the actual path to your copacetic-mcp server binary. You can download the latest release from the [Releases]() page.

> Note: When using the binary directly, ensure that the Copacetic CLI, Trivy, and Docker with emulation are installed on your system.

Docker Container option

You can also run copacetic-mcp using Docker by adding this configuration to your mcp.json:

{
  "servers": {
    "copaceticMcpDocker": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "--mount",
        "type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock",
        "--mount",
        "type=bind,source=${env:HOME}/.docker/config.json,target=/root/.docker/config.json",
        "ghcr.io/project-copacetic/mcp-server:latest"
      ],
      "env": {
        "DOCKER_HOST": "unix:///var/run/docker.sock"
      }
    }
  }
}

Notes:

  • Mounting the Docker socket gives the container access to the host Docker daemon; this is required for Copacetic image operations but has security implications—only run trusted images.
  • Mounting ${HOME}/.docker/config.json allows the container to use your registry credentials for pulling/pushing images.
Alternative: Using with Claude Desktop

You can also configure copacetic-mcp for use with Claude Desktop by adding it to your MCP configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "copacetic-mcp": {
      "command": "/path/to/copacetic-mcp-server",
      "args": []
    }
  }
}

License

This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.