diff-mcp
Version:
MCP server to compare text or data and get a readable diff (supports text, json, jsonc, yaml, toml, etc.)
10 lines (9 loc) • 337 B
JavaScript
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { describe, expect, it } from "vitest";
import { createMcpServer } from "./server.js";
describe("MCP server", () => {
it("creates an McpServer", () => {
const server = createMcpServer();
expect(server).toBeInstanceOf(McpServer);
});
});