@intactfile/mcp 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +3 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -28,6 +28,8 @@ const OUT_EXT = {
28
28
  png: ".png",
29
29
  sqlite: ".sqlite",
30
30
  archive: "",
31
+ audio: ".wav",
32
+ avi: ".avi",
31
33
  };
32
34
  function writeOut(input, out, r) {
33
35
  if (r.kind === "archive") {
@@ -62,7 +64,7 @@ async function meter() {
62
64
  /* best effort — a delivered result is already the user's */
63
65
  }
64
66
  }
65
- const server = new McpServer({ name: "intactfile", version: "0.1.0" });
67
+ const server = new McpServer({ name: "intactfile", version: "0.2.0" });
66
68
  /* ------------------------------ free tools ----------------------------- */
67
69
  server.tool("detect_file", "Identify a file's format and whether IntactFile can repair it. Free, fully local — no upload, no sign-in.", { path: z.string().describe("Absolute path to the file on disk") }, async ({ path }) => {
68
70
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intactfile/mcp",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "IntactFile MCP server — repair corrupted files from your AI agent, locally. Discovery + diagnosis are free; repair requires an active Business subscription. Files never leave your machine.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",
@@ -16,7 +16,7 @@
16
16
  "dependencies": {
17
17
  "@modelcontextprotocol/sdk": "^1.12.0",
18
18
  "zod": "^3.23.8",
19
- "@intactfile/node-core": "0.1.0"
19
+ "@intactfile/node-core": "0.2.0"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@types/node": "^22.15.0",