# Diff Checker API MCP server

Compare two texts line-by-line â€” additions, deletions, unchanged. x402 micropayment.

## Links
- Registry page: https://www.getdrio.com/mcp/io-github-br0ski777-diff-checker
- Repository: https://github.com/Br0ski777/diff-checker-x402
- Website: https://github.com/Br0ski777/diff-checker-x402

## Install
- Endpoint: https://diff-checker.api.klymax402.com/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://diff-checker.api.klymax402.com/mcp

## Tools
- text_compare_diff - Use this when you need to compare two pieces of text and identify exactly what changed between them. Returns a structured line-by-line diff with summary statistics.

1. changes -- array of diff entries, each with type (added, removed, unchanged) and content
2. linesAdded -- total number of new lines in text2
3. linesRemoved -- total number of lines deleted from text1
4. linesUnchanged -- total number of identical lines
5. similarity -- percentage similarity between the two texts (0-100)

Example output: {"changes":[{"type":"unchanged","content":"line 1"},{"type":"removed","content":"old line 2"},{"type":"added","content":"new line 2"}],"linesAdded":1,"linesRemoved":1,"linesUnchanged":1,"similarity":66.7}

Use this FOR code review (comparing before/after), tracking document revisions, verifying config file changes, or auditing template modifications. Use this BEFORE deploying config changes to understand what differs.

Do NOT use for text classification -- use text_classify_content instead. Do NOT use for sentiment analysis -- use text_analyze_sentiment instead. Do NOT use for word counting -- use text_count_words instead. Endpoint: https://diff-checker.api.klymax402.com/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: io.github.Br0ski777
- Version: 1.1.0
- Runtime: Sse
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: May 16, 2026
- Source: https://registry.modelcontextprotocol.io
