Skip to content

fix: mcp server bin #419

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 1 commit 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: 1 addition & 1 deletion packages/diff-mcp/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="../../demos/html-demo/logo.svg" width="48px" align="center" alt="jsondiffpatch logo" />
<img src="./logo.svg" width="48px" align="center" alt="jsondiffpatch logo" />
<h1 align="center">diff-mcp</h1>
<p align="center">
<a href="https://jsondiffpatch.com">jsondiffpatch.com</a>
Expand Down
5 changes: 5 additions & 0 deletions packages/diff-mcp/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/diff-mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "diff-mcp",
"version": "0.0.3",
"version": "0.0.4",
"author": "Benjamin Eidelman <[email protected]>",
"description": "MCP server to compare text or data and get a readable diff (supports text, json, jsonc, yaml, toml, etc.)",
"contributors": ["Benjamin Eidelman <[email protected]>"],
Expand Down
2 changes: 2 additions & 0 deletions packages/diff-mcp/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env node

import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";

import { createMcpServer } from "./server.js";
Expand Down