A toolkit for structured JSON comparison — find what changed between two JSON values, with control over how keys, values, and arrays are matched.
Online playground: comparejson.com
Most JSON diff tools either output unstructured text or hide the parts that matter (where a key was added, whether a type changed, whether two arrays differ in order or in content). compare-json returns a structured list of differences — every entry carries a path, the side it belongs to (base / contrast / both), and the kind of change (added, deleted, typeChanged, valueChanged) — so you can render, filter, or program against it.
- Deep comparison of objects, arrays, and primitives.
- Three array comparison strategies:
byIndex(default),lcs(minimal diff via Longest Common Subsequence), andunordered(multiset match). - Case-insensitive key and/or value matching.
- Numeric-string equality — optionally treat
"1"and1as equal. - Path tracking with both segment-array and dot-notation forms.
- Zero runtime dependencies in
@compare-json/core. - CLI with table or JSON output, reading from inline strings or files.
- MCP server built in — drop the CLI into any MCP-aware AI assistant.
- Agent Skill — a single skill that works in Claude Code, OpenAI Codex CLI, and OpenCode.
- Full TypeScript types.
This is a pnpm workspace:
| Package | Description |
|---|---|
@compare-json/core |
Core comparison library (programmatic API). |
@compare-json/cli |
Command-line tool & MCP server, built on top of core. |
npm install @compare-json/coreimport { compareJSON } from '@compare-json/core';
const differences = compareJSON({
baseJSON: { name: 'Alice', age: 30 },
contrastJSON: { name: 'Bob', age: '30', email: 'bob@test.com' },
});
// [
// { pathString: 'name', pathBelongsTo: 'both', diffType: 'valueChanged', ... },
// { pathString: 'age', pathBelongsTo: 'both', diffType: 'typeChanged', ... },
// { pathString: 'email', pathBelongsTo: 'contrast', diffType: 'added', ... },
// ]See the core README for the full API.
npm install -g @compare-json/cli
compare-json base.json contrast.json┌──────────────┬──────────────┐
│ Key │ Change Type │
├──────────────┼──────────────┤
│ (Base) a │ valueChanged │
│ (Base) b │ deleted │
│ (Contrast) c │ added │
└──────────────┴──────────────┘
Use --json-export for machine-readable output, or --mcp to launch as an MCP server. See the CLI README for all flags and the MCP tool schema.
{
"mcpServers": {
"compare-json": {
"command": "npx",
"args": ["@compare-json/cli@latest", "--mcp"]
}
}
}A single SKILL.md teaches AI coding assistants how to invoke the CLI on demand. The file follows the open Agent Skills format and works across Claude Code, OpenAI Codex CLI, OpenCode, Cursor, and 50+ others.
The fastest install is npx skills — it auto-detects every agent you have installed and drops the skill into each one:
npx skills add unitstack/compare-jsonRequires Node.js ≥ 20 and pnpm.
# install dependencies
pnpm install
# build all packages
pnpm -r build
# run tests across the workspace
pnpm -r test
# lint
pnpm -r lintThe repo layout:
packages/
├── compare-json-core/ # @compare-json/core — library
├── compare-json-cli/ # @compare-json/cli — CLI + MCP server
└── internal/ # shared eslint/tsconfig (not published)
skills/
└── compare-json/ # SKILL.md for Claude Code / Codex CLI / OpenCode
MIT