differino-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@differino-mcpCan you compare /tmp/old.pdf and /tmp/new.pdf?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
differino-mcp
MCP (Model Context Protocol) server for Differino -- compare PDF, DOCX, and TXT documents from any AI agent.
Setup
1. Install
pnpm add -g differino-mcp2. Get an API Key
Sign up at differino.com
Go to Settings → API Key
Click Generate Key and copy it
3. Add to Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"differino": {
"command": "pnpm",
"args": ["dlx", "differino-mcp"],
"env": {
"DIFFERINO_API_KEY": "dfn_your_api_key_here"
}
}
}
}Local development
From the repository root:
pnpm install
pnpm --dir mcp buildVariable | Required | Description |
| Yes | Your API key -- generate at Settings → API Key |
| No | Base URL (default: |
Related MCP server: Docalyze
Tools
compare_documents
Compare two local files and get a diff summary plus the visual document-review manifest when available. This is the only tool that consumes a comparison (your free comparison or 1 credit).
Parameters:
file_a_path(required) -- Absolute path to the original documentfile_b_path(required) -- Absolute path to the modified documentcomparison_mode(optional) --visualfor full document review, ortextfor fast text-only comparison (default:visual)
The tool uploads both files, waits for extraction and comparison, and returns a summary with added/removed/modified block counts plus a link to the full comparison. Successful responses include creditsRemaining and freeComparisonRemaining. If the server is still working when the internal wait expires, the response has status: "processing"; poll get_comparison with the returned id until status is ready.
Files up to 45 MB each are supported. Small pairs (up to ~4 MB combined) go through the multipart endpoint; larger files are uploaded automatically via signed upload URLs (POST /api/v1/uploads -> direct PUT to storage -> POST /api/v1/uploads/complete -> compare by version ids). This is transparent: you always just call compare_documents.
Responses include visual artifact metadata when available:
comparisonMode:visualortextvisual.status:ready,pending,missing, ordisabledvisual.manifest: the document-review contract whenvisual.statusisreadypages[]: side-by-side page pairs with image URLs and dimensionspages[].regions[]: red/green-ready change regions withleftBox,rightBox, snippets, change type, salience metadata, and a stablegroupIdregions[].groupId: shared identity for paired change fragments, including changes that cross page boundariesregions[].salience:subtle,visible,structural, ortechnical, plussalienceReasonwhen availabletotalChangesandchangedPageCount: summary fields for compact controls and optional review navigation; paired fragments with the samegroupIdcount as one change
visual.diffUrl: signed URL for the visual diff JSON when available
Agents should treat visual.manifest as the primary surface for professional document review: render the two documents continuously, draw exact inline highlights when coordinates are present, use groupId for selection and synchronized scrolling, and derive center-gutter/minimap markers from the region coordinates. If visual.status is not ready, agents should use the text diff summary and comparison URL instead of assuming there are no visual changes.
Example:
{
"name": "compare_documents",
"arguments": {
"file_a_path": "/docs/contract_v1.pdf",
"file_b_path": "/docs/contract_v2.pdf",
"comparison_mode": "visual"
}
}get_comparison
Check the status and results of a comparison by its UUID. Returns the same visual artifact contract as compare_documents, with fresh signed URLs. Use it to poll comparisons that returned status: "processing". Free (does not consume credits).
Parameters:
comparison_id(required) -- The comparison UUID
list_comparisons
List recent comparisons in your workspace, newest first. Returns id, status, comparisonMode, file_a/file_b name and type, summary counters, created_at, and completed_at for each comparison. Useful to recover a comparison id or check recent activity. Free.
Parameters:
limit(optional) -- Maximum results, 1 to 50 (default: 10)status(optional) -- Filter bypending,processing,ready, orfailed
Example:
{
"name": "list_comparisons",
"arguments": { "limit": 5, "status": "ready" }
}export_comparison_pdf
Export a finished comparison as a PDF report and get a temporary download URL (valid for about 5 minutes). With wait: true (default) the tool polls the export job every 2 seconds for up to 3 minutes and returns the downloadUrl. Free workspaces get a watermarked PDF; workspaces with credits export without watermark. Free (exports do not consume credits).
Parameters:
comparison_id(required) -- The comparison UUID (must havestatus: "ready")include_unchanged(optional) -- Include unchanged content in the report (default:false)locale(optional) -- Report language:en,es,zh,fr,de, orhi(default:en)wait(optional) -- Poll until the export completes (default:true)
Example:
{
"name": "export_comparison_pdf",
"arguments": {
"comparison_id": "8f14e45f-...",
"locale": "es",
"include_unchanged": false
}
}summarize_visual_diff
Compact, page-by-page summary of the visual diff: one entry per change group (fragments that share a groupId are deduplicated), with change type, title, salience, and optional text snippets. No image URLs and no pixel coordinates, so it is the cheapest way for an agent to understand what changed and where. Requires a visual comparison with visual.status: "ready". Free.
Parameters:
comparison_id(required) -- The comparison UUIDmin_salience(optional) -- Only include changes at or above this prominence level; order istechnical<subtle<visible<structuralinclude_snippets(optional) -- IncludesnippetA/snippetBexcerpts (default:true)max_changes_per_page(optional) -- Cap per page, extra changes are counted as omitted (default: 20)
Example:
{
"name": "summarize_visual_diff",
"arguments": {
"comparison_id": "8f14e45f-...",
"min_salience": "visible",
"max_changes_per_page": 10
}
}get_text_diff
Fetch the block-level text diff of a finished comparison. Returns the diff summary counters plus the diff blocks: added and removed blocks carry the affected text, modified blocks also carry word-level spans marking exactly which words changed. By default only changed blocks are returned. Best when you need to quote exact text changes. Free.
Parameters:
comparison_id(required) -- The comparison UUID (must havestatus: "ready")only_changed(optional) -- Skipequalblocks (default:true)max_blocks(optional) -- Maximum blocks returned (default: 100)
Example:
{
"name": "get_text_diff",
"arguments": { "comparison_id": "8f14e45f-...", "max_blocks": 50 }
}get_balance
Get the account status of the workspace behind the API key: credit balance, whether the lifetime free comparison is still available, effective plan, and workspace id. Useful before compare_documents or after a [NO_CREDITS] error. Free.
Parameters: none
Example response:
{
"credits": 42,
"freeComparisonRemaining": 0,
"plan": "pro",
"workspaceId": "3b2f...",
"buyUrl": "https://www.differino.com/billing?pack=comparino"
}REST API
The MCP server uses the Differino REST API under the hood. You can also call it directly:
# Compare two SMALL files (multipart body limited to ~4.5 MB total on Vercel)
curl -X POST https://www.differino.com/api/v1/compare \
-H "Authorization: Bearer dfn_your_api_key" \
-H "Idempotency-Key: my-unique-key-001" \
-F "file_a=@original.pdf" \
-F "file_b=@modified.pdf" \
-F "comparison_mode=visual" \
-F "accuracy_mode=balanced"
# Check comparison status
curl https://www.differino.com/api/v1/comparisons/{id} \
-H "Authorization: Bearer dfn_your_api_key"
# List recent comparisons
curl "https://www.differino.com/api/v1/comparisons?limit=10&status=ready" \
-H "Authorization: Bearer dfn_your_api_key"
# Account status: credits, free comparison, plan
curl https://www.differino.com/api/v1/me \
-H "Authorization: Bearer dfn_your_api_key"
# Export a comparison as PDF, then poll for the download URL
curl -X POST https://www.differino.com/api/v1/comparisons/{id}/export \
-H "Authorization: Bearer dfn_your_api_key" \
-H "Content-Type: application/json" \
-d '{"format": "pdf", "includeUnchanged": false, "locale": "en"}'
curl "https://www.differino.com/api/v1/comparisons/{id}/export?jobId={jobId}" \
-H "Authorization: Bearer dfn_your_api_key"Large files: the signed-upload flow
Multipart POST /api/v1/compare is limited to about 4.5 MB of TOTAL request body (Vercel limit); above that it returns 413 PAYLOAD_TOO_LARGE. For files up to 45 MB each, upload directly to storage:
# 1. Init: declare both files, get signed upload URLs + version ids
curl -X POST https://www.differino.com/api/v1/uploads \
-H "Authorization: Bearer dfn_your_api_key" \
-H "Content-Type: application/json" \
-d '{"fileA": {"name": "original.pdf", "type": "application/pdf", "size": 10485760},
"fileB": {"name": "modified.pdf", "type": "application/pdf", "size": 11534336}}'
# 2. PUT each file body to its uploadUrl (URLs are valid for 2 hours)
curl -X PUT "{fileA.uploadUrl}" \
-H "Content-Type: application/pdf" \
--data-binary @original.pdf
curl -X PUT "{fileB.uploadUrl}" \
-H "Content-Type: application/pdf" \
--data-binary @modified.pdf
# 3. Complete: verify the stored objects and queue extraction
curl -X POST https://www.differino.com/api/v1/uploads/complete \
-H "Authorization: Bearer dfn_your_api_key" \
-H "Content-Type: application/json" \
-d '{"versionIds": ["{fileA.versionId}", "{fileB.versionId}"]}'
# 4. Compare the uploaded versions (JSON body instead of multipart)
curl -X POST https://www.differino.com/api/v1/compare \
-H "Authorization: Bearer dfn_your_api_key" \
-H "Content-Type: application/json" \
-d '{"versionAId": "{fileA.versionId}", "versionBId": "{fileB.versionId}", "comparisonMode": "visual"}'Steps 1-3 are free; only step 4 consumes the free comparison or a credit.
Idempotency
POST /api/v1/compare accepts an optional Idempotency-Key header (up to 200 characters). Repeating a key within your workspace returns the existing comparison (idempotentReplay: true) without charging again. Use it to make retries safe.
Rate limits
All limits are per workspace. Exceeding one returns 429 with code: "RATE_LIMITED", a retryAfter field (seconds), and a Retry-After header.
Endpoint | Limit |
| 10 / minute |
| 20 / hour, plus at most 5 pending/processing export jobs ( |
| 120 / minute (shared) |
| 30 / minute (shared) |
accuracy_mode
POST /api/v1/compare accepts an optional accuracy_mode form field:
fast-- quickest results, best for plain text and simple layouts (default forcomparison_mode=text)balanced-- good accuracy/speed trade-off (default forcomparison_mode=visual)thorough-- maximum accuracy for complex layouts, slower
Error codes
HTTP |
| Meaning |
400 | Invalid request: missing files, unsupported file type, file too large, or invalid parameters | |
400 |
| File content does not match its extension (magic-byte check), or upload verification failed |
400 |
| Declared file size exceeds the 45 MB per-file limit |
400 |
| Referenced version cannot be used (processing failed, or already completed) |
401 | Missing or invalid API key | |
402 |
| No free comparison left and no credits remaining; the response includes |
404 |
| Comparison, version, or export job not found in your workspace |
413 |
| Multipart body exceeds ~4.5 MB total; use the signed-upload flow |
429 |
| Rate limit exceeded; retry after |
429 |
| More than 5 export jobs pending/processing in your workspace |
When present, the code field is machine-readable; the MCP server prefixes it to error messages (for example [NO_CREDITS] No credits remaining...) and appends retryAfter / buyUrl details when the API provides them.
Supported Formats
PDF (.pdf)
Word (.docx)
Plain Text (.txt)
Credits
Every account gets 1 free comparison (lifetime, not monthly). After that, each comparison costs 1 credit. Checking results, listing comparisons, exporting PDFs, and reading diffs are always free. Buy credit packs at differino.com/pricing.
About this repository
This repo contains the source of the differino-mcp npm package: a thin MCP client for the Differino REST API. The Differino comparison engine, web app, and infrastructure are proprietary and not part of this repository. Using the API consumes Differino credits; see pricing.
License
MIT (this MCP client only).
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseCqualityDmaintenanceAn efficient MCP server for performing accurate, deep comparisons between JSON objects or strings using the deepdiff engine. It provides AI agents with standardized difference reports, supporting nested structures and various input formats to ensure precise data analysis.Last updated1
- AlicenseBqualityDmaintenanceAn MCP server that lets AI assistants read and visually analyze local documents — PDFs, Excel spreadsheets, CSV files, Word documents, PowerPoint presentations, and images.Last updated468MIT
- AlicenseAqualityCmaintenanceThis MCP server enables AI agents to view PDFs as accessible HTML with bounding-box citations, and provides tools for layout-aware parsing, schema extraction, cross-document Q&A, and PDF rendering.Last updated27MIT
- Alicense-qualityBmaintenanceMCP server that allows AI agents to read, search, summarize, and answer questions about local PDF, DOCX, XLSX, and TXT files through five tools.Last updatedMIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
AI document editing for agents: draft, edit, export .docx/PDF. 37 MCP tools; agent self-signup.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sweetcucumbersalad/differino-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server