FinanceMCP vs time
Side-by-side comparison to help you pick between these two MCP servers.
FinanceMCP by guangxiangdebizi | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 574 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | JavaScript | TypeScript |
| Last commit | this month | this month |
FinanceMCP · Summary
Comprehensive financial data MCP server providing real-time stock, crypto, macro-economic data and technical indicators through Tushare and Binance APIs.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
FinanceMCP · Use cases
- Technical analysis of stocks with multiple indicators like MACD, RSI, and BOLL bands
- Comprehensive company evaluation across multiple markets (A-shares, HK, US)
- Real-time monitoring of fund flows, sector performance, and market sentiment
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
FinanceMCP · Install
Installation Options
Option 1: Public Cloud Service (Recommended)
Use the pre-configured cloud service with your own Tushare token:
{
"mcpServers": {
"finance-mcp": {
"disabled": false,
"timeout": 600,
"type": "streamableHttp",
"url": "https://finvestai.top/mcp",
"headers": {
"X-Tushare-Token": "your_tushare_token_here"
}
}
}
}Option 2: Local Installation via npm
npm install -g finance-mcpThen configure Claude Desktop:
{
"mcpServers": {
"finance-mcp": {
"type": "stdio",
"command": "finance-mcp",
"env": {
"TUSHARE_TOKEN": "your_tushare_token_here"
}
}
}
}For more deployment options, see the [README](https://github.com/guangxiangdebizi/FinanceMCP).
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"]
}
}
}