everything vs sp500-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | sp500-mcp-server by zhensherlock | |
|---|---|---|
| Stars | ★ 85,748 | ★ 96 |
| 30天用量 | — | — |
| 综合分 | 77 | 47 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 金融数据开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
sp500-mcp-server · 概述
一个文档完善的MCP服务器,通过Next.js web界面和Supabase后端提供标普500公司数据工具。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
sp500-mcp-server · 使用场景
- 金融分析师通过AI助手研究标普500公司,直接访问数据
- 投资组合工具需要实时公司财务和新闻数据
- 学术研究人员使用标准化标普500指标研究市场趋势
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-everythingsp500-mcp-server · 安装
- 安装依赖:
pnpm install - 创建包含Supabase凭据的环境文件(需要SUPABASE_URL和SUPABASE_ANON_KEY)
- 构建嵌入式MCP App HTML资源:
pnpm --filter @apps/web-app build - 启动应用:
pnpm dev
对于Claude Desktop,添加到config.json:
{
"mcpServers": {
"sp500": {
"command": "npx",
"args": ["@your-org/sp500-mcp-server"],
"env": {
"SUPABASE_URL": "your_url",
"SUPABASE_ANON_KEY": "your_key"
}
}
}
}