Overview
What is mcp-server-diff-python?
mcp-server-diff-python is an MCP server that computes text differences between two strings using Python's standard library difflib. It returns differences in Unified diff format, making it useful for text comparison and version control tasks.
How to use mcp-server-diff-python?
Install and run via uvx mcp-server-diff-python or clone the repository and use uv run. Add the server configuration to Claude Desktop's claude_desktop_config.json. The server exposes a single tool, get-unified-diff, which takes two required string arguments (string_a and string_b) and returns the diff in Unified diff format.
Key features of mcp-server-diff-python
- Single tool:
get-unified-difffor computing text differences. - Returns differences in Unified diff format.
- Leverages Python's built-in
diffliblibrary. - Lightweight—no external dependencies beyond Python standard library.
- Runs via
uvxor localuvinstallation.
Use cases of mcp-server-diff-python
- Comparing two versions of a document or code snippet.
- Generating patches or change summaries between text revisions.
- Enabling AI assistants to show what changed between two text inputs.
- Version control workflows requiring inline diff output.
FAQ from mcp-server-diff-python
What tool does the server provide?
The server provides a single tool called get-unified-diff, which computes and returns the Unified diff between two input strings.
What arguments does get-unified-diff require?
It requires two string arguments: string_a (source text) and string_b (target text), both mandatory.
How do I install and configure the server with Claude Desktop?
Add the server configuration to your Claude Desktop config file using uvx mcp-server-diff-python as the command, or clone the repo and run via uv run with a local directory path.
What library does the server use to compute diffs?
It uses Python's standard library module difflib—no additional dependencies are needed.
Is there a way to test or debug the server?
Yes, you can start the MCP Inspector by running npx @modelcontextprotocol/inspector uvx mcp-server-diff-python to interactively test the server.