everything vs image-processing-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | image-processing-mcp-server by rafael-castelo | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30天用量 | — | — |
| 综合分 | 77 | 28 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 多媒体开发者工具本地文件系统 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 12 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
image-processing-mcp-server · 概述
MCP 服务器,提供图像处理功能,包括调整大小、压缩、格式转换、元数据提取和裁剪。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
image-processing-mcp-server · 使用场景
- 自动调整网站图像以适应不同的响应式布局
- 批量转换大型图像库为更高效的格式
- 从图像中提取元数据用于编目或分析目的
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingimage-processing-mcp-server · 安装
安装
- **先决条件:** Node.js(推荐版本 14 或更高)和 npm
- **克隆并安装:**
``bash git clone git@github.com/rafael-castelo/image-processing-mcp-server.git cd image-processing-mcp npm install npm run build ``
- **在 Claude Desktop 中配置:**
``json { "mcpServers": { "image-processing": { "command": "node", "args": ["path/to/mcp/server/build/index.js"] } } } ``
- **与 Cursor 一起使用(NPX):**
```json { "mcpServers": { "image-processing": { "command": "npx", "args": [ "-y", "image-processing-mcp-server" ] } } }