time vs beanquery-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | beanquery-mcp by vanto | |
|---|---|---|
| Stars | ★ 85,748 | ★ 46 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 14 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
beanquery-mcp · Summary
Experimental MCP server for AI assistants to query Beancount financial ledgers using BQL.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
beanquery-mcp · Use cases
- AI assistants analyzing personal finance patterns from Beancount ledgers
- Automated financial report generation using BQL queries
- Integration of financial data with other AI-powered productivity tools
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}beanquery-mcp · Install
Installation
Prerequisites
- Python 3.10 or later
- [uv](https://docs.astral.sh/uv/) for managing Python projects
Running the Server
**Development Mode:**
mcp dev server.py**Claude Desktop Integration:**
uv run mcp install server.py --with beancount --with beanqueryWith environment variable:
uv run mcp install server.py -v BEANCOUNT_LEDGER=/path/to/your/ledger.bean --with beancount --with beanqueryIn Claude Desktop configuration:
{
"mcpServers": {
"beancount": {
"command": "uv",
"args": ["run", "mcp", "install", "server.py"],
"env": {
"BEANCOUNT_LEDGER": "/path/to/your/ledger.bean"
}
}
}
}