Skip to content

feat: an MCP server powered by jsondiffpatch #413

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 9 commits into from
Mar 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
- run: npm ci
- run: npm run build
working-directory: ./packages/jsondiffpatch
- run: npm run build
working-directory: ./packages/diff-mcp
- run: npm run lint
- run: npm run type-check
- run: npm run test
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/release-mcp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

on:
workflow_dispatch: ~
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish
working-directory: ./packages/diff-mcp
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
55 changes: 28 additions & 27 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
node_modules
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz
.DS_Store

pids
logs
results
coverage
.nyc_output
dist
build
lib

npm-debug.log
.idea/

packages/jsondiffpatch/README.md
packages/jsondiffpatch/MIT-LICENSE.txt

*.local.*
node_modules
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz
.DS_Store

pids
logs
results
coverage
.nyc_output
dist
build
lib

npm-debug.log
.idea/

packages/jsondiffpatch/README.md
packages/jsondiffpatch/MIT-LICENSE.txt
packages/diff-mcp/MIT-LICENSE.txt

*.local.*
Binary file added demos/html-demo/logo-400px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading