MCP服务器:图像编辑工具,提供显著性分割、背景移除等图像处理功能
Project description
MCP 图像抠图服务器
这是一个基于Model Context Protocol (MCP)的服务器,专门提供火山引擎图像抠图功能。
功能特性
- 智能抠图: 使用火山引擎的显著性分割技术,自动识别并抠出图像中的主要对象
- 批量处理: 支持同时处理多张图像
- 自动上传: 抠图结果自动上传到服务器并返回URL链接
- 本地保存: 可选择保存抠图结果到本地文件
- 高精度: 基于显著性检测的精确分割算法
安装
从 PyPI 安装
pip install mcp-image-cutout
从源码安装
git clone https://github.com/fengjinchao/mcp-image-cutout.git
cd mcp-image-cutout
pip install -e .
2. 配置API密钥
推荐使用环境变量设置API密钥:
export VOLC_ACCESS_KEY="your_access_key"
export VOLC_SECRET_KEY="your_secret_key"
或者在代码中直接设置(不推荐用于生产环境)。
3. 运行服务器
# 使用命令行工具
mcp-image-cutout
# 或直接运行模块
python -m mcp_image_cutout.server
在Claude Desktop中使用
在Claude Desktop的配置文件中添加以下配置:
macOS/Linux: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"抠图工具": {
"command": "mcp-image-cutout",
"env": {
"VOLC_ACCESS_KEY": "your_access_key",
"VOLC_SECRET_KEY": "your_secret_key"
}
}
}
}
可用工具
image_cutout
智能图像抠图,使用显著性分割自动识别并抠出图像中的主要对象,自动上传到服务器并返回图片URL。
参数:
image_urls: 图像URL列表,支持多张图像同时处理
返回:
- 单张图片:直接返回图片URL
- 多张图片:返回所有图片URL的列表
示例:
请帮我抠出这张图片中的主要对象:https://example.com/image.jpg
批量抠图这些图片:
- https://example.com/image1.jpg
- https://example.com/image2.jpg
抠图原理
使用的 saliency_seg 显著性分割算法:
- 基于视觉显著性检测图像中最重要的区域
- 精确分割显著对象的轮廓
- 生成高质量的抠图结果
- 适用于各种复杂背景的图像处理
上传功能
抠图完成后,系统会自动:
- 将base64编码的图像数据转换为PNG文件
- 上传到指定服务器:
https://www.mcpcn.cc/api/fileUploadAndDownload/uploadMcpFile - 返回可访问的图片URL链接
- 支持批量上传多张抠图结果
上传接口返回格式:
{
"code": 0,
"data": {
"url": "https://juezhi.oss-cn-shanghai.aliyuncs.com/file/uploads/mcp/xxx.webp"
},
"msg": "成功"
}
注意事项
- 确保图像URL可以公开访问
- 处理结果会以base64格式返回,大图像可能需要较长处理时间
- API调用有频率限制,请合理使用
- 生产环境中请使用环境变量设置API密钥
故障排除
常见问题
-
服务器无法启动
- 检查Python版本(需要3.10+)
- 确认所有依赖已正确安装
-
API调用失败
- 验证API密钥是否正确
- 检查网络连接
- 确认图像URL可访问
-
Claude Desktop中看不到工具
- 检查配置文件语法
- 确认路径是绝对路径
- 重启Claude Desktop
日志查看
服务器日志会输出到stderr,可以通过以下方式查看:
# 查看Claude Desktop的MCP日志
tail -f ~/Library/Logs/Claude/mcp-server-图像编辑.log
开发
如需修改或扩展功能,请参考:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_image_cutout-0.1.9.tar.gz.
File metadata
- Download URL: mcp_image_cutout-0.1.9.tar.gz
- Upload date:
- Size: 77.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e01f1fc86aa3dcf11ee9565d8bd41af9c9097b0a01f0b636f1ae37de9ef08930
|
|
| MD5 |
6bfd743afa9cf3e897f0ee8b5b701f7f
|
|
| BLAKE2b-256 |
73932d25d4842b33c91bdcab3d27ea7660cd3552a36ff40425cc495ccd2404ce
|
File details
Details for the file mcp_image_cutout-0.1.9-py3-none-any.whl.
File metadata
- Download URL: mcp_image_cutout-0.1.9-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fd6466319160413b5c9832c28bdaf768c1278665c9245910529c2574cbd2144
|
|
| MD5 |
9f48da4959a06e76f8710dd8874fd362
|
|
| BLAKE2b-256 |
56e2812fe2dc4d9580741aadcd911593ccf4bd4f98f0c52e411804b9001818f5
|