g

git-conflict-mcp

@mattyatea/git-conflict-mcp
0 Stars 176 次浏览 mattyatea 更新于 2026-08-23

MCP 服务配置

复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用

{
  "mcpServers": {
    "git-conflict-mcp": {
      "args": [],
      "command": "git-conflict-mcp"
    }
  }
}

服务介绍

git-conflict-mcp

Installation /

English

You can easily install the latest version using the install.sh script. This will download the appropriate binary for your platform from the latest GitHub Release.

curl -fsSL https://raw.githubusercontent.com/mattyatea/git-conflict-mcp/main/install.sh | bash

After running the script, follow the instructions to move the binary to your executable path (e.g., /usr/local/bin).

日本語

install.sh 使用最新簡単GitHub最新適

curl -fsSL https://raw.githubusercontent.com/mattyatea/git-conflict-mcp/main/install.sh | bash

実行後表示指示従実行例: /usr/local/bin移動

Development

To install dependencies:

bun install

To run:

bun run index.ts

This project was created using bun init in bun v1.2.9. Bun is a fast all-in-one JavaScript runtime.

MCP Configuration

Claude Desktop

You can add the server using the claude CLI:

claude mcp add git-conflict-mcp -- /usr/local/bin/git-conflict-mcp

Or manually edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "git-conflict-mcp": {
      "command": "/usr/local/bin/git-conflict-mcp",
      "args": []
    }
  }
}

Codex

You can add the server using the codex CLI:

codex mcp add git-conflict-mcp -- git-conflict-mcp

Or manually edit ~/.codex/config.toml:

[mcp_servers.git-conflict-mcp]
command = "git-conflict-mcp"
args = []

JSON Type (Generic)

Use this configuration for clients that support JSON config.

{
  "mcpServers": {
    "git-conflict-mcp": {
      "command": "git-conflict-mcp",
      "args": []
    }
  }
}

相关 MCP 服务