time vs yfinance-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | yfinance-mcp by narumiruna | |
|---|---|---|
| Stars | ★ 85,748 | ★ 135 |
| 30天用量 | — | — |
| 综合分 | 77 | 49 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 金融数据AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
yfinance-mcp · 概述
雅虎财经 MCP 服务器,提供股票数据、财务报表、新闻、图表和期权数据。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
yfinance-mcp · 使用场景
- 金融研究助手获取实时股票数据和财务报表
- 投资分析工具访问历史价格数据和技术图表
- AI 驱动的金融顾问监控市场新闻和行业排名
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}yfinance-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 替换为您克隆仓库的实际路径。