roundcut-mcp 0.1.0 → 0.1.1

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.
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import { McpServer } from "@modelcontextprotocol/server";
7
7
  import { serveStdio } from "@modelcontextprotocol/server/stdio";
8
8
  import * as z from "zod/v4";
9
9
  import { FORMATS, circleCrop, compress, convert, crop, info, preview, resize } from "./engine.js";
10
- const VERSION = "0.1.0";
10
+ const VERSION = "0.1.1";
11
11
  const SITE = "https://roundcut.app";
12
12
  const format = z.enum(FORMATS);
13
13
  const quality = z.number().int().min(1).max(100).optional().describe("Lossy quality 1-100 (default 80). Ignored for png.");
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "roundcut-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for local image tools by RoundCut: circle crop, crop, resize, compress and convert JPG, PNG, WebP and AVIF with sharp. No network, no accounts.",
5
- "mcpName": "io.github.araluma/roundcut-mcp",
5
+ "mcpName": "io.github.Araluma/roundcut-mcp",
6
6
  "type": "module",
7
7
  "bin": { "roundcut-mcp": "./dist/index.js" },
8
8
  "main": "./dist/index.js",
package/server.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
- "name": "io.github.araluma/roundcut-mcp",
4
- "description": "Local image tools: circle crop, crop, resize, compress and convert JPG/PNG/WebP/AVIF with sharp. No network.",
3
+ "name": "io.github.Araluma/roundcut-mcp",
4
+ "description": "Local image tools: circle crop, crop, resize, compress, convert JPG/PNG/WebP/AVIF. By RoundCut.",
5
5
  "repository": { "url": "https://github.com/Araluma/roundcut-mcp", "source": "github" },
6
- "version": "0.1.0",
6
+ "version": "0.1.1",
7
7
  "websiteUrl": "https://roundcut.app",
8
8
  "packages": [
9
9
  {
10
10
  "registryType": "npm",
11
11
  "registryBaseUrl": "https://registry.npmjs.org",
12
12
  "identifier": "roundcut-mcp",
13
- "version": "0.1.0",
13
+ "version": "0.1.1",
14
14
  "transport": { "type": "stdio" }
15
15
  }
16
16
  ]
package/src/index.ts CHANGED
@@ -8,7 +8,7 @@ import { serveStdio } from "@modelcontextprotocol/server/stdio";
8
8
  import * as z from "zod/v4";
9
9
  import { FORMATS, circleCrop, compress, convert, crop, info, preview, resize, type Report } from "./engine.js";
10
10
 
11
- const VERSION = "0.1.0";
11
+ const VERSION = "0.1.1";
12
12
  const SITE = "https://roundcut.app";
13
13
 
14
14
  const format = z.enum(FORMATS);