time vs beanquery-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | beanquery-mcp by vanto | |
|---|---|---|
| Stars | ★ 85,748 | ★ 46 |
| 30天用量 | — | — |
| 综合分 | 77 | 36 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 金融数据AI / LLM 工具开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 14 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
beanquery-mcp · 概述
实验性 MCP 服务器,可让 AI 助手使用 BQL 查询 Beancount 财务账本。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
beanquery-mcp · 使用场景
- AI 助手从 Beancount 账本中分析个人财务模式
- 使用 BQL 查询自动生成财务报告
- 将财务数据与其他 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"]
}
}
}beanquery-mcp · 安装
安装
前置要求
- Python 3.10 或更高版本
- [uv](https://docs.astral.sh/uv/) 用于管理 Python 项目
运行服务器
**开发模式:**
mcp dev server.py**Claude Desktop 集成:**
uv run mcp install server.py --with beancount --with beanquery使用环境变量:
uv run mcp install server.py -v BEANCOUNT_LEDGER=/path/to/your/ledger.bean --with beancount --with beanquery在 Claude Desktop 配置中:
{
"mcpServers": {
"beancount": {
"command": "uv",
"args": ["run", "mcp", "install", "server.py"],
"env": {
"BEANCOUNT_LEDGER": "/path/to/your/ledger.bean"
}
}
}
}