everything vs mcp-image
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | mcp-image by shinpr | |
|---|---|---|
| Stars | ★ 85,748 | ★ 110 |
| 30天用量 | — | — |
| 综合分 | 77 | 47 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具多媒体效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-image · 概述
MCP 服务器,使用 Gemini 或 OpenAI 模型进行 AI 图像生成和自动提示优化。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-image · 使用场景
- 为创意项目生成图像,无需掌握提示工程知识
- 在多个视觉资产中创建一致的角色设计
- 以最少的精力为专业内容创作生成高质量图像
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-everythingmcp-image · 安装
安装
前置要求
- Node.js 22 或更高版本
- Gemini API 密钥(来自 Google AI Studio)或 OpenAI API 密钥
- 兼容 MCP 的 AI 工具(Cursor、Claude Code、Codex)
快速开始
对于 Claude Desktop
添加到 claude_desktop_config.json:
{
"mcpServers": {
"mcp-image": {
"command": "npx",
"args": ["-y", "mcp-image"],
"env": {
"GEMINI_API_KEY": "your_gemini_api_key_here",
"IMAGE_OUTPUT_DIR": "/absolute/path/to/images"
}
}
}
}对于 Cursor
添加到您的 Cursor 设置(全局或项目特定):
{
"mcpServers": {
"mcp-image": {
"command": "npx",
"args": ["-y", "mcp-image"],
"env": {
"GEMINI_API_KEY": "your_gemini_api_key_here",
"IMAGE_OUTPUT_DIR": "/absolute/path/to/images"
}
}
}
}对于 Codex
添加到 ~/.codex/config.toml:
[mcp_servers.mcp-image]
command = "npx"
args = ["-y", "mcp-image"]
[mcp_servers.mcp-image.env]
GEMINI_API_KEY = "your_gemini_api_key_here"
IMAGE_OUTPUT_DIR = "/absolute/path/to/images"