mcp_massive vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp_massive by massive-com | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 332 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 52 | 77 |
| 官方 | — | ✓ |
| 分类 | 金融数据开发者工具AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
mcp_massive · 概述
一个MCP服务器,通过搜索、调用和查询工具访问Massive.com金融数据,并提供内存SQLite存储功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp_massive · 使用场景
- 获取实时股票价格、历史市场数据和财务基本面
- 计算金融指标如Black-Scholes期权定价和移动平均线
- 使用自然语言查询搜索Massive.com API端点
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp_massive · 安装
前置要求
- Python 3.12+
- Massive.com API密钥
- Astral UV (v0.4.0+)
Claude Code安装
npm install -g @anthropic-ai/claude-code
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.10.0"
claude mcp add massive -e MASSIVE_API_KEY=your_api_key_here -- mcp_massiveClaude Desktop安装
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.10.0"
which mcp_massive然后添加到Claude Desktop配置:
{
"mcpServers": {
"massive": {
"command": "<path_to_mcp_massive>",
"env": {
"MASSIVE_API_KEY": "<your_api_key_here>",
"HOME": "<your_home_directory>"
}
}
}
}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