everything vs yfinance-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | yfinance-mcp by narumiruna | |
|---|---|---|
| Stars | ★ 85,748 | ★ 135 |
| 30天用量 | — | — |
| 综合分 | 77 | 49 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 金融数据AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
yfinance-mcp · 概述
雅虎财经 MCP 服务器,提供股票数据、财务报表、新闻、图表和期权数据。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
yfinance-mcp · 使用场景
- 金融研究助手获取实时股票数据和财务报表
- 投资分析工具访问历史价格数据和技术图表
- AI 驱动的金融顾问监控市场新闻和行业排名
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-everythingyfinance-mcp · 安装
安装
使用 uv(推荐)
- [安装 uv](https://docs.astral.sh/uv/getting-started/installation/)
- 将以下内容添加到您的 MCP 客户端配置中:
{
"mcpServers": {
"yfmcp": {
"command": "uvx",
"args": ["yfmcp@latest"]
}
}
}使用 Docker
{
"mcpServers": {
"yfmcp": {
"command": "docker",
"args": ["run", "-i", "--rm", "narumi/yfinance-mcp"]
}
}
}从源代码安装
- 克隆仓库并安装依赖项:
git clone https://github.com/narumiruna/yfinance-mcp.git
cd yfinance-mcp
uv sync- 将以下内容添加到您的 MCP 客户端配置中:
{
"mcpServers": {
"yfmcp": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/yfinance-mcp",
"yfmcp"
]
}
}
}请将 /path/to/yfinance-mcp 替换为您克隆仓库的实际路径。