spotinfo vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
spotinfo by alexei-led | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 161 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | 运维基建开发者工具AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
spotinfo · 概述
探索 AWS EC2 Spot 实例库存的 MCP 服务器,提供实时放置分数、价格数据和中断率信息。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
spotinfo · 使用场景
- DevOps 工程师通过识别具有成本效益的 Spot 实例来优化云基础设施成本
- 云架构师跨地区比较实例类型的可用性和定价
- AI 助手帮助用户为其工作负载需求找到最佳 Spot 实例匹配
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
spotinfo · 安装
安装
# macOS 使用 Homebrew
brew tap alexei-led/tap
brew install alexei-led/tap/spotinfo
# Linux/Windows:从发布版下载
curl -L https://github.com/alexei-led/spotinfo/releases/latest/download/spotinfo_linux_amd64.tar.gz | tar xz
# Docker
docker pull ghcr.io/alexei-led/spotinfo:latestClaude Desktop 设置
添加到 Claude Desktop config.json:
{
"mcpServers": {
"spotinfo": {
"command": "spotinfo",
"args": ["--mcp"]
}
}
}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