unsplash-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
unsplash-mcp-server by hellokaton | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 219 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 49 | 77 |
| 官方 | — | ✓ |
| 分类 | 多媒体开发者工具AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
unsplash-mcp-server · 概述
用于搜索 Unsplash 高质量图片库的 MCP 服务器,具备高级筛选功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
unsplash-mcp-server · 使用场景
- 内容创作者为博客文章或社交媒体寻找特定图片
- 希望嵌入图片搜索功能的应用开发者
- 通过可筛选的图片选项寻找灵感的设计师
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
unsplash-mcp-server · 安装
安装
**通过 Smithery 自动安装:**
npx -y @smithery/cli@latest install @hellokaton/unsplash-mcp-server --client cursor --key YOUR_KEY**手动安装:**
git clone https://github.com/hellokaton/unsplash-mcp-server.git
cd unsplash-mcp-server
uv venv
uv pip install .**Claude Desktop 配置:**
{
"mcpServers": {
"unsplash": {
"command": "uv",
"args": ["run", "--with", "fastmcp", "fastmcp", "run", "./server.py"],
"env": {
"UNSPLASH_ACCESS_KEY": "YOUR_ACCESS_KEY"
}
}
}
}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-everything