Developer Tools
MCP Server
Let AI agents compare documents through Differino. Works with Claude, Cursor, and any MCP-compatible client.
What is MCP?
The Model Context Protocol is a standard for AI agents to use external tools. Differino's MCP server lets agents upload and compare documents programmatically — no browser needed. Your AI assistant can compare contracts, review document changes, and summarize differences on its own.
Quick Start
Install
pnpm add -g differino-mcpConfigure Claude Desktop
Generate an API key at Settings → API Key, then add to your claude_desktop_config.json:
{
"mcpServers": {
"differino": {
"command": "pnpm",
"args": ["dlx", "differino-mcp"],
"env": {
"DIFFERINO_API_KEY": "dfn_your_api_key_here"
}
}
}
}Set environment variables
| Variable | Required | Description |
|---|---|---|
| DIFFERINO_API_KEY | Yes | Your API key — generate one at Settings → API Key |
| DIFFERINO_URL | No | Base URL (default: https://www.differino.com) |
Available Tools
compare_documents
Upload two local files and get fast text or grouped visual comparison metadata.get_comparison
Check status, text summary, and visual artifact results.Response Contract
Comparison responses include a text summary and, when available, visual artifact metadata for page renders and highlighted regions.
If visual.status is not ready, use the text diff summary and full comparison URL instead of treating the visual result as no changes.
Supported Formats
REST API
You can also use the API directly. Authenticate with your API key via the Authorization header.
Compare two files
curl -X POST https://www.differino.com/api/v1/compare \
-H "Authorization: Bearer dfn_your_api_key" \
-F "file_a=@original.pdf" \
-F "file_b=@modified.pdf" \
-F "comparison_mode=visual"Check comparison status
curl https://www.differino.com/api/v1/comparisons/{id} \
-H "Authorization: Bearer dfn_your_api_key"Credits
Every account gets 3 free comparisons per month. After that, comparisons use credits from your balance. Credit packs start at €1.99 for 10 comparisons.
View Pricing