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
npm install -g differino-mcpConfigure Claude Desktop
Generate an API key at Settings → API Key, then add to your claude_desktop_config.json:
{
"mcpServers": {
"differino": {
"command": "npx",
"args": ["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 a diff summary.get_comparison
Check status and results of a comparison.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"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