everything vs illustrator-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | illustrator-mcp-server by spencerhhubert | |
|---|---|---|
| Stars | ★ 85,748 | ★ 50 |
| 30天用量 | — | — |
| 综合分 | 77 | 35 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具多媒体效率工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 17 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
illustrator-mcp-server · 概述
Adobe Illustrator MCP 服务器,让 AI 模型直接在 Illustrator 中运行 JavaScript 脚本。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
illustrator-mcp-server · 使用场景
- 自动生成复杂的矢量图形设计
- 使用 AI 驱动的修改批量处理 Illustrator 文件
- 在 AI 和 Illustrator 之间创建自定义设计自动化工作流
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-everythingillustrator-mcp-server · 安装
- 克隆仓库:
git clone https://github.com/spencerhhubert/illustrator-mcp-server.git - 使用 uv 安装依赖:
uv sync - 通过以下内容配置 Claude Desktop,添加到
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"illustrator": {
"command": "uv",
"args": [
"--directory",
"/你的/illustrator-mcp-server/路径",
"run",
"illustrator"
]
}
}
}