everything vs MCPollinations
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | MCPollinations by pinkpixel-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 41 |
| 30天用量 | — | — |
| 综合分 | 77 | 45 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具多媒体开发者工具 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 本月 | 2 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
MCPollinations · 概述
MCP 服务器,让 AI 助手通过 Pollinations API 生成图像、文本和音频。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
MCPollinations · 使用场景
- 根据文本提示生成图像并以各种格式保存
- 创建带有可定制语音的文本音频响应
- 编辑现有图像或基于参考图像创建新图像
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-everythingMCPollinations · 安装
安装
通过 Smithery 安装(推荐用于 Claude Desktop)
npx -y @smithery/cli install @pinkpixel-dev/mcpollinations --client claude使用 npx(无需安装)
npx @pinkpixel-dev/mcpollinations全局安装
npm install -g @pinkpixel-dev/mcpollinations
mcpollinations从仓库克隆
git clone https://github.com/pinkpixel-dev/mcpollinations.git
cd mcpollinations
node pollinations-mcp-server.jsClaude Desktop 集成
添加到您的 Claude Desktop config.json:
{
"mcpollinations": {
"command": "npx",
"args": ["-y", "@pinkpixel-dev/mcpollinations"],
"env": {
"token": "YOUR_TOKEN_OPTIONAL",
"referrer": "your-app-or-domain-optional",
"IMAGE_MODEL": "flux",
"IMAGE_WIDTH": "1024",
"IMAGE_HEIGHT": "1024",
"OUTPUT_DIR": "./mcpollinations-output"
}
}
}