mcp-yfinance vs fetch
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-yfinance by 9nate-drake | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 19 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 34 | 76 |
| 官方 | — | ✓ |
| 分类 | 金融数据AI / LLM 工具 | 网页抓取AI / LLM 工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 18 个月前 | 本月 |
mcp-yfinance · 概述
通过 yfinance API 向 Claude Desktop 提供 Yahoo 金融数据的 MCP 服务器。
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
mcp-yfinance · 使用场景
- 获取各公司的当前股价和市场数据
- 分析自定义时间段的历史股票表现
- 检索机构所有权和分析师价格目标信息
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
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"
]
}
}
}fetch · 安装
安装
**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:
uvx mcp-server-fetch**使用PIP** 通过pip安装:
pip install mcp-server-fetch然后运行:
python -m mcp_server_fetchClaude桌面配置
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}