nx-mcp-server 1.0.6 → 1.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx-mcp-server",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "NX MCP Server — 远程图片压缩 MCP 工具",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -3,7 +3,7 @@ import {compressImage} from '../nx-api.js';
3
3
  // ===== 工具处理函数 =====
4
4
 
5
5
  async function handleCompress(args){
6
- return compressImage({urls:args.urls,files:args.files,quality:args.quality,output:args.output});
6
+ return compressImage({urls:args.urls,files:args.files,quality:args.quality,output:args.output,apiKey:args.apiKey});
7
7
  }
8
8
 
9
9
  // ===== 工具路由表 =====