Fast Diff Server
БесплатноНе проверенA high-performance Model Context Protocol server that provides text diffing capabilities, enabling LLMs to compare two blocks of text and receive differences in
Описание
A high-performance Model Context Protocol server that provides text diffing capabilities, enabling LLMs to compare two blocks of text and receive differences in unified diff format.
README
A high-performance Model Context Protocol server that provides text diffing capabilities. This server enables LLMs to efficiently compare two blocks of text and receive the differences in the standard unified diff format.
The core logic is implemented in Rust for maximum speed, offering a significant performance improvement over standard Python libraries. The server exposes both the high-performance Rust implementation and Python's native difflib for comparison and flexibility.
Available Tools
diff_tool_rust_similar- Compares two multiline strings using a high-performance Rust implementation (thesimilarcrate's Myers diff algorithm). This is the recommended tool for performance.original_text(string, required): The original text content.modified_text(string, required): The modified text content.
diff_tool_python_difflib- Compares two multiline strings using the standard Pythondiffliblibrary (Ratcliff/Obershelp algorithm). Useful for comparison or whendifflib-specific behavior is required.original_text(string, required): The original text content.modified_text(string, required): The modified text content.
Installation & Usage
This project is a Python package with a Rust extension, so it requires a compilation step. The recommended way to install and run it is from a local clone of the repository.
Prerequisites
- Git
- Python (>= 3.10)
- Rust Toolchain
- uv (for Python environment and package management)
Running from Source
Clone the repository:
git clone https://github.com/kweinmeister/fast-diff-mcp.git cd fast-diff-mcpInstall dependencies and compile the extension: This command sets up a virtual environment and installs the package in editable mode.
uv pip install -e .Run the server: From the root of the project directory, run:
uv run server.py
Configuration
To use this server with an MCP client, you must configure the client to run the server from your local clone of this repository. The commands below assume you are running them from the root of the cloned fast-diff-mcp directory.
Configure for Gemini CLI
Add the following to your ~/.gemini/settings.json file, replacing /path/to/fast-diff-mcp with the absolute path to where you cloned the repository.
Using uv (from source)
{
"mcpServers": {
"diff": {
"command": "uv",
"args": ["run", "server.py"],
"options": {
"cwd": "/path/to/fast-diff-mcp"
}
}
}
}
Configure for Claude.app
Add the following to your Claude settings, replacing /path/to/fast-diff-mcp with the absolute path to where you cloned the repository.
Using uv (from source)
{
"mcpServers": {
"diff": {
"command": "uv",
"args": ["run", "server.py"],
"options": {
"cwd": "/path/to/fast-diff-mcp"
}
}
}
}
Configure for VS Code
Add the following JSON block to your User Settings (JSON) file or a .vscode/mcp.json file in your workspace. Remember to replace /path/to/fast-diff-mcp with the correct absolute path.
Note that the
mcpkey is needed when using themcp.jsonfile.
Using uv (from source)
{
"mcp": {
"servers": {
"diff": {
"command": "uv",
"args": ["run", "server.py"],
"options": {
"cwd": "/path/to/fast-diff-mcp"
}
}
}
}
}
Benchmarking
This repository includes a script to benchmark the performance of the Rust implementation against Python's difflib.
To run the benchmark, execute the following command from the project root:
uv run benchmark.py
Deploying to Google Cloud Run with Docker
This project is optimized for deployment to serverless platforms like Google Cloud Run using its included multi-stage Dockerfile.
The most direct way to deploy is with the gcloud CLI, which will build the container and deploy it in a single step.
Prerequisites:
- Google Cloud SDK installed and authenticated (
gcloud auth login). - A Google Cloud project with billing enabled and the Cloud Run API activated.
To deploy, run the following commands:
# 1. Set your project, region, and service name
export PROJECT_ID="your-google-cloud-project-id"
export REGION="us-central1"
export SERVICE_NAME="fast-diff-mcp"
# 2. Configure gcloud to use your project
gcloud config set project $PROJECT_ID
# 3. Deploy from source
# gcloud will build the image and deploy it to Cloud Run
gcloud run deploy $SERVICE_NAME \
--allow-unauthenticated \
--region=$REGION \
--source .
After a few minutes, gcloud will provide a public URL for your service.
Contributing
Pull requests are welcome! We encourage contributions to help improve this server. Whether you want to add new features, fix bugs, or improve documentation, your input is valuable.
License
Fast Diff MCP Server is licensed under the Apache License 2.0. For more details, please see the LICENSE file in the project repository.
Установка Fast Diff Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/kweinmeister/fast-diff-mcpFAQ
Fast Diff Server MCP бесплатный?
Да, Fast Diff Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Fast Diff Server?
Нет, Fast Diff Server работает без API-ключей и переменных окружения.
Fast Diff Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Fast Diff Server в Claude Desktop, Claude Code или Cursor?
Открой Fast Diff Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Fast Diff Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
