mcp-yfinance vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-yfinance by 9nate-drake | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 19 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 34 | 77 |
| 官方 | — | ✓ |
| 分类 | 金融数据AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 18 个月前 | 本月 |
mcp-yfinance · 概述
通过 yfinance API 向 Claude Desktop 提供 Yahoo 金融数据的 MCP 服务器。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-yfinance · 使用场景
- 获取各公司的当前股价和市场数据
- 分析自定义时间段的历史股票表现
- 检索机构所有权和分析师价格目标信息
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-yfinance · 安装
安装
要求
- Python 3.10 或更高版本
- Claude Desktop
安装步骤
- 克隆此仓库:
git clone https://github.com/9nate-drake/mcp-yfinance- 安装所需的包:
pip install mcp yfinance配置
将以下内容添加到 Claude Desktop 配置文件 claude_desktop_config.json 中:
{
"mcpServers": {
"yfinance": {
"command": "python",
"args": [
"/path/to/finance_server/server.py"
]
}
}
}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