image-compress
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
Chinese图片压缩
图片压缩
通过 nx-mcp-server 远程压缩服务对图片进行智能压缩。
通过 nx-mcp-server 远程压缩服务对图片进行智能压缩。
配置
配置
在项目根目录创建 :
.mcp.jsonjson
{
"mcpServers": {
"nx-mcp-compress": {
"type": "url",
"url": "https://mcp.api-inference.modelscope.net/4378d43d3e7d4c/mcp",
"env": {
"NX_API_KEY": "你的 API Key"
}
}
}
}查找顺序:项目根目录 → 用户家目录。提取 → , → 。
urlMCP_URLenv.NX_API_KEYAPI_KEYSkill 直连 MCP 端点,无需重启 Claude Code。
没有 API Key? 联系微信获取。zhjian_2026
在项目根目录创建 :
.mcp.jsonjson
{
"mcpServers": {
"nx-mcp-compress": {
"type": "url",
"url": "https://mcp.api-inference.modelscope.net/4378d43d3e7d4c/mcp",
"env": {
"NX_API_KEY": "你的 API Key"
}
}
}
}查找顺序:项目根目录 → 用户家目录。提取 → , → 。
urlMCP_URLenv.NX_API_KEYAPI_KEYSkill 直连 MCP 端点,无需重启 Claude Code。
没有 API Key? 联系微信获取。zhjian_2026
压缩流程
压缩流程
步骤 1:检查配置
步骤 1:检查配置
bash
cat .mcp.json 2>/dev/null || cat ~/.mcp.json 2>/dev/null- 找到 → 记录 和
url,继续步骤 2NX_API_KEY - 找不到 → 询问用户是否已有 API Key:
- 有 Key:帮用户创建 ,全局和项目安装都通用
~/.mcp.json - 没有 Key:告知联系微信 获取
zhjian_2026
- 有 Key:帮用户创建
⚠️ 配置缺失时不要继续后续步骤。
bash
cat .mcp.json 2>/dev/null || cat ~/.mcp.json 2>/dev/null- 找到 → 记录 和
url,继续步骤 2NX_API_KEY - 找不到 → 询问用户是否已有 API Key:
- 有 Key:帮用户创建 ,全局和项目安装都通用
~/.mcp.json - 没有 Key:告知联系微信 获取
zhjian_2026
- 有 Key:帮用户创建
⚠️ 配置缺失时不要继续后续步骤。
步骤 2:执行压缩(一次 Bash 调用,纯内存,零文件)
步骤 2:执行压缩(一次 Bash 调用,纯内存,零文件)
替换 、、、 后,heredoc 直接通过 stdin 喂给 node:
PIC_DIRMCP_URLAPI_KEYQUALITYbash
NODE_PATH=$(npm root -g) node << 'COMPRESSEOF'
const fs=require('fs'),path=require('path');
const PIC_DIR='<目标图片目录绝对路径>';
const MCP_URL='<从.mcp.json读取的url>';
const API_KEY='<从.mcp.json读取的NX_API_KEY>';
const QUALITY=90;
(async()=>{
const exts=['.png','.jpg','.jpeg','.webp','.bmp','.tga'];
const imgs=fs.readdirSync(PIC_DIR).filter(f=>exts.includes(path.extname(f).toLowerCase())).sort();
const origTotal=imgs.reduce((s,f)=>s+fs.statSync(path.join(PIC_DIR,f)).size,0);
console.log(`共 ${imgs.length} 张,总 ${(origTotal/1024).toFixed(0)}KB`);
const maxSize=5*1024*1024;
const records=[];let skip=0;
for(let i=0;i<imgs.length;i++){const f=imgs[i],fp=path.join(PIC_DIR,f),osz=fs.statSync(fp).size;
if(osz>maxSize){records.push({name:f,origKb:osz,compKb:0,compUrl:null,ratio:null,error:'超过5MB限制'});skip++;console.log(` [${i+1}/${imgs.length}] ${f} ${(osz/1024).toFixed(0)}KB ⚠️ 超过5MB跳过`);continue}
const buf=fs.readFileSync(fp);const ext=path.extname(f).toLowerCase().slice(1);
const mime=ext==='png'?'image/png':ext==='webp'?'image/webp':'image/jpeg';
records.push({name:f,origKb:osz,compKb:0,compUrl:null,ratio:null,dataUrl:'data:'+mime+';base64,'+buf.toString('base64')});}
console.log(`可压缩: ${records.length-skip} 张, 跳过: ${skip} 张`);
console.time('压缩');
const H={'Content-Type':'application/json','Accept':'application/json, text/event-stream'};
const r1=await fetch(MCP_URL,{method:'POST',headers:H,body:JSON.stringify({jsonrpc:'2.0',id:'1',method:'initialize',params:{protocolVersion:'2025-06-18',capabilities:{},clientInfo:{name:'cc',version:'1'}}})});
H['Mcp-Session-Id']=r1.headers.get('Mcp-Session-Id');console.log('MCP: init');
await fetch(MCP_URL,{method:'POST',headers:H,body:JSON.stringify({jsonrpc:'2.0',method:'notifications/initialized'})});console.log('MCP: notified');
// 逐张发送,避免单次 payload 超过网关限制(~5MB)
let totalSaved=0,pass=0,fail=0;
for(let i=0;i<records.length;i++){const r=records[i];
if(r.error){fail++;continue}
const r3=await fetch(MCP_URL,{method:'POST',headers:H,body:JSON.stringify({jsonrpc:'2.0',id:'3',method:'tools/call',params:{name:'nx_compress',arguments:{files:[r.dataUrl],quality:QUALITY,apiKey:API_KEY}}})});
const inner=JSON.parse((await r3.json()).result.content[0].text);
if(inner.error){r.error=inner.code;fail++;console.log(` [${i+1}/${imgs.length}] ${r.name} ❌ ${inner.code}: ${inner.error}`);continue}
const it=inner.items[0];
if(it.error){r.error=it.error;fail++;console.log(` [${i+1}/${imgs.length}] ${r.name} ❌ ${it.error}`);}
else{r.compKb=it.compressedSize/1024;r.ratio=it.ratio;r.compUrl=it.compressedUrl;totalSaved+=it.originalSize-it.compressedSize;pass++;console.log(` [${i+1}/${imgs.length}] ${r.name} ${(r.origKb/1024).toFixed(0)}KB→${(r.compKb).toFixed(0)}KB (${r.ratio})`)}
}
console.timeEnd('压缩');
console.log('\n'+'='.repeat(100));
console.log(`${'文件'.padEnd(40)} ${'原始'.padStart(8)} ${'压缩后'.padStart(8)} ${'压缩率'.padStart(8)} ${'结果'.padStart(6)}`);
console.log('-'.repeat(100));
for(const r of records){const oszS=(r.origKb/1024).toFixed(1)+'KB';
if(r.compUrl){const cszS=(r.compKb).toFixed(1)+'KB';console.log(`${r.name.padEnd(40)} ${oszS.padStart(8)} ${cszS.padStart(8)} ${(r.ratio||'?').padStart(8)} ${'✅'.padStart(6)}`)}
else{console.log(`${r.name.padEnd(40)} ${oszS.padStart(8)} ${'—'.padStart(8)} ${'—'.padStart(8)} ${'❌'.padStart(6)}`)}}
console.log(`\n📊 ${records.length} 张 | ✅ ${pass} 成功 | ❌ ${fail} 失败 | 共节省 ${(totalSaved/1024).toFixed(0)}KB`);
})();
COMPRESSEOF压缩参数: 默认 90(1-100),无需本地 sharp,直传服务端压缩。
quality替换 、、、 后,heredoc 直接通过 stdin 喂给 node:
PIC_DIRMCP_URLAPI_KEYQUALITYbash
NODE_PATH=$(npm root -g) node << 'COMPRESSEOF'
const fs=require('fs'),path=require('path');
const PIC_DIR='<目标图片目录绝对路径>';
const MCP_URL='<从.mcp.json读取的url>';
const API_KEY='<从.mcp.json读取的NX_API_KEY>';
const QUALITY=90;
(async()=>{
const exts=['.png','.jpg','.jpeg','.webp','.bmp','.tga'];
const imgs=fs.readdirSync(PIC_DIR).filter(f=>exts.includes(path.extname(f).toLowerCase())).sort();
const origTotal=imgs.reduce((s,f)=>s+fs.statSync(path.join(PIC_DIR,f)).size,0);
console.log(`共 ${imgs.length} 张,总 ${(origTotal/1024).toFixed(0)}KB`);
const maxSize=5*1024*1024;
const records=[];let skip=0;
for(let i=0;i<imgs.length;i++){const f=imgs[i],fp=path.join(PIC_DIR,f),osz=fs.statSync(fp).size;
if(osz>maxSize){records.push({name:f,origKb:osz,compKb:0,compUrl:null,ratio:null,error:'超过5MB限制'});skip++;console.log(` [${i+1}/${imgs.length}] ${f} ${(osz/1024).toFixed(0)}KB ⚠️ 超过5MB跳过`);continue}
const buf=fs.readFileSync(fp);const ext=path.extname(f).toLowerCase().slice(1);
const mime=ext==='png'?'image/png':ext==='webp'?'image/webp':'image/jpeg';
records.push({name:f,origKb:osz,compKb:0,compUrl:null,ratio:null,dataUrl:'data:'+mime+';base64,'+buf.toString('base64')});}
console.log(`可压缩: ${records.length-skip} 张, 跳过: ${skip} 张`);
console.time('压缩');
const H={'Content-Type':'application/json','Accept':'application/json, text/event-stream'};
const r1=await fetch(MCP_URL,{method:'POST',headers:H,body:JSON.stringify({jsonrpc:'2.0',id:'1',method:'initialize',params:{protocolVersion:'2025-06-18',capabilities:{},clientInfo:{name:'cc',version:'1'}}})});
H['Mcp-Session-Id']=r1.headers.get('Mcp-Session-Id');console.log('MCP: init');
await fetch(MCP_URL,{method:'POST',headers:H,body:JSON.stringify({jsonrpc:'2.0',method:'notifications/initialized'})});console.log('MCP: notified');
// 逐张发送,避免单次 payload 超过网关限制(~5MB)
let totalSaved=0,pass=0,fail=0;
for(let i=0;i<records.length;i++){const r=records[i];
if(r.error){fail++;continue}
const r3=await fetch(MCP_URL,{method:'POST',headers:H,body:JSON.stringify({jsonrpc:'2.0',id:'3',method:'tools/call',params:{name:'nx_compress',arguments:{files:[r.dataUrl],quality:QUALITY,apiKey:API_KEY}}})});
const inner=JSON.parse((await r3.json()).result.content[0].text);
if(inner.error){r.error=inner.code;fail++;console.log(` [${i+1}/${imgs.length}] ${r.name} ❌ ${inner.code}: ${inner.error}`);continue}
const it=inner.items[0];
if(it.error){r.error=it.error;fail++;console.log(` [${i+1}/${imgs.length}] ${r.name} ❌ ${it.error}`);}
else{r.compKb=it.compressedSize/1024;r.ratio=it.ratio;r.compUrl=it.compressedUrl;totalSaved+=it.originalSize-it.compressedSize;pass++;console.log(` [${i+1}/${imgs.length}] ${r.name} ${(r.origKb/1024).toFixed(0)}KB→${(r.compKb).toFixed(0)}KB (${r.ratio})`)}
}
console.timeEnd('压缩');
console.log('\n'+'='.repeat(100));
console.log(`${'文件'.padEnd(40)} ${'原始'.padStart(8)} ${'压缩后'.padStart(8)} ${'压缩率'.padStart(8)} ${'结果'.padStart(6)}`);
console.log('-'.repeat(100));
for(const r of records){const oszS=(r.origKb/1024).toFixed(1)+'KB';
if(r.compUrl){const cszS=(r.compKb).toFixed(1)+'KB';console.log(`${r.name.padEnd(40)} ${oszS.padStart(8)} ${cszS.padStart(8)} ${(r.ratio||'?').padStart(8)} ${'✅'.padStart(6)}`)}
else{console.log(`${r.name.padEnd(40)} ${oszS.padStart(8)} ${'—'.padStart(8)} ${'—'.padStart(8)} ${'❌'.padStart(6)}`)}}
console.log(`\n📊 ${records.length} 张 | ✅ ${pass} 成功 | ❌ ${fail} 失败 | 共节省 ${(totalSaved/1024).toFixed(0)}KB`);
})();
COMPRESSEOF压缩参数: 默认 90(1-100),无需本地 sharp,直传服务端压缩。
quality建议
建议
- ✅ 成功:压缩后的 CDN URL 可直接使用
- ⚠️ 超 5MB:文件超过服务端限制,需手动处理
- ❌ 失败:重试一次
- ✅ 成功:压缩后的 CDN URL 可直接使用
- ⚠️ 超 5MB:文件超过服务端限制,需手动处理
- ❌ 失败:重试一次
返回字段速查
返回字段速查
| 字段 | 类型 | 说明 |
|---|---|---|
| | 原始大小(bytes) |
| | 压缩后大小(bytes) |
| | 压缩率,如 |
| | CDN 地址 |
| 字段 | 类型 | 说明 |
|---|---|---|
| | 原始大小(bytes) |
| | 压缩后大小(bytes) |
| | 压缩率,如 |
| | CDN 地址 |
常见错误速查
常见错误速查
| 错误现象 | 原因 | 正确做法 |
|---|---|---|
| 没传 | 必须传 |
| API Key 无效 | 检查 |
| 未发送 | 必须三步:init → notified → call |
| 缺少 | 同时声明 |
| 文件超过 5MB 被跳过 | 服务端限制 | 提示用户手动处理 |
| 错误现象 | 原因 | 正确做法 |
|---|---|---|
| 没传 | 必须传 |
| API Key 无效 | 检查 |
| 未发送 | 必须三步:init → notified → call |
| 缺少 | 同时声明 |
| 文件超过 5MB 被跳过 | 服务端限制 | 提示用户手动处理 |
禁止事项
禁止事项
- ❌ 不要本地压缩(服务端智能压缩,本地 sharp 多余)
- ❌ 不要传 参数(不存在)
output - ❌ 不要省略 参数
apiKey - ❌ 不要省略 步骤
notifications/initialized - ❌ 不要写任何临时文件(heredoc 直接 stdin,纯内存执行)
- ❌ 不要把流程拆成多次 Bash 调用(一次 搞定)
node << 'COMPRESSEOF' - ❌ 不要使用反斜杠路径,一律用正斜杠()
d:/path
- ❌ 不要本地压缩(服务端智能压缩,本地 sharp 多余)
- ❌ 不要传 参数(不存在)
output - ❌ 不要省略 参数
apiKey - ❌ 不要省略 步骤
notifications/initialized - ❌ 不要写任何临时文件(heredoc 直接 stdin,纯内存执行)
- ❌ 不要把流程拆成多次 Bash 调用(一次 搞定)
node << 'COMPRESSEOF' - ❌ 不要使用反斜杠路径,一律用正斜杠()
d:/path