Development
Compare two JSON payloads and render a visual HTML diff with path-level additions, removals, changes, and statistics
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/json-diff-visualizer' \
-H 'Content-Type: application/json' \
-d '{"leftJson":"{\"status\":\"ok\",\"count\":2}","rightJson":"{\"status\":\"ok\",\"count\":3,\"next\":true}","leftLabel":"v1","rightLabel":"v2","showUnchanged":false,"sortKeys":true,"maxRows":300}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/json-diff-visualizer| Name | Type | Required | Description |
|---|---|---|---|
| leftJson | textarea | Yes | — |
| rightJson | textarea | Yes | — |
| leftLabel | text | No | — |
| rightLabel | text | No | — |
| showUnchanged | checkbox | No | — |
| sortKeys |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-json-diff-visualizer": {
"name": "json-diff-visualizer",
"description": "Compare two JSON payloads and render a visual HTML diff with path-level additions, removals, changes, and statistics",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=json-diff-visualizer",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "json-diff-visualizer",
"arguments": {
"leftJson": "{\"status\":\"ok\",\"count\":2}",
"rightJson": "{\"status\":\"ok\",\"count\":3,\"next\":true}",
"leftLabel": "v1",
"rightLabel": "v2",
"showUnchanged": false,
"sortKeys": true,
"maxRows": 300
}
}
}Questions or issues? Contact [email protected]
| checkbox |
| No |
| — |
| maxRows | number | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}