home / mcp / intellidiff mcp server

IntelliDiff MCP Server

A server that compares files and folders with smart-text normalization and duplicate detection.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "ai-mcp-garage-mcp-intellidiff": {
      "url": "http://localhost:8000/mcp/",
      "headers": {
        "INTELLIDIFF_MAX_DEPTH": "15",
        "INTELLIDIFF_CHUNK_SIZE": "32768",
        "INTELLIDIFF_MAX_TEXT_SIZE": "5242880",
        "INTELLIDIFF_MAX_BINARY_SIZE": "1073741824"
      }
    }
  }
}

Available tools

validate_workspace_path

Validate that a path is within the workspace root.

get_file_hash

Get CRC32 hash and basic information about a file.

compare_files

Compare two files with various modes and options including exact, smart_text, and binary.

compare_folders

Compare two folder structures recursively and identify differences.

find_identical_files

Find files with identical content within a folder.

read_file_lines

Read specific line ranges from a text file with optional context.

IntelliDiff MCP Server - ai-mcp-garage/mcp-intellidiff