time vs TWSEMCPServer
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | TWSEMCPServer by twjackysu | |
|---|---|---|
| Stars | ★ 85,748 | ★ 90 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
TWSEMCPServer · Summary
Comprehensive MCP server for Taiwan stock market data with real-time quotes and financial analysis.
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
TWSEMCPServer · Use cases
- Analyze stock trends of specific Taiwan companies
- Track foreign investment patterns in Taiwan markets
- Identify high-dividend stocks and upcoming ex-dividend dates
- Monitor market hotspots and unusual trading volumes
- Screen value stocks with good ESG performance
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"]
}
}
}TWSEMCPServer · Install
Installation
Online Usage (Recommended)
{
"twstockmcpserver": {
"transport": "streamable_http",
"url": "https://TW-Stock-MCP-Server.fastmcp.app/mcp"
}
}Docker Usage (stdio, no self-hosting)
{
"twstockmcpserver": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--pull=always",
"-e",
"MCP_STDIO=1",
"ghcr.io/twjackysu/twsemcpserver:latest"
]
}
}Docker Usage (HTTP, self-hosting)
docker run -d -p 8000:8000 -e PORT=8000 ghcr.io/twjackysu/twsemcpserver:latestLocal Installation
git clone https://github.com/twjackysu/TWStockMCPServer.git
cd TWStockMCPServer
uv sync && uv run fastmcp dev server.pyClaude Desktop Configuration
Add to config.json:
{
"mcpServers": {
"twstockmcpserver": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--pull=always",
"-e",
"MCP_STDIO=1",
"ghcr.io/twjackysu/twsemcpserver:latest"
]
}
}
}