stock-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
stock-mcp by huweihua123 | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 146 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
stock-mcp · Summary
A professional financial market data MCP server supporting A-shares/US stocks/crypto with HTTP API for AI agents.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
stock-mcp · Use cases
- AI agents requesting stock market data and technical analysis
- Quantitative trading systems retrieving historical market data
- Financial analysis applications accessing fundamentals and news
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
stock-mcp · Install
Installation
Docker Compose (Recommended)
git clone https://github.com/huweihua123/stock-mcp.git
cd stock-mcp
cp .env.example .env
docker compose up -d --buildLocal Development
uv sync --dev
cp .env.example .env
export STOCK_MCP_AUTH_MODE=none
uv run python -m uvicorn src.server.app:app --host 127.0.0.1 --port 9898Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"stock-mcp": {
"command": "uv",
"args": ["run", "python", "-c", "import src.server.mcp.server as m; m.create_mcp_server().run(transport='stdio')"],
"env": {
"STOCK_MCP_AUTH_MODE": "none"
}
}
}
}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"]
}
}
}