time vs sp500-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | sp500-mcp-server by zhensherlock | |
|---|---|---|
| Stars | ★ 85,748 | ★ 96 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | FinanceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
sp500-mcp-server · Summary
A well-documented MCP server providing S&P 500 company data tools through a Next.js web interface with Supabase backend.
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
sp500-mcp-server · Use cases
- Financial analysts researching S&P 500 companies through AI assistants with direct data access
- Investment portfolio tools requiring real-time company financials and news data
- Academic researchers studying market trends using standardized S&P 500 metrics
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"]
}
}
}sp500-mcp-server · Install
- Install dependencies:
pnpm install - Create local env file with Supabase credentials (SUPABASE_URL and SUPABASE_ANON_KEY required)
- Build embedded MCP App HTML resources:
pnpm --filter @apps/web-app build - Start apps:
pnpm dev
For Claude Desktop, add to config.json:
{
"mcpServers": {
"sp500": {
"command": "npx",
"args": ["@your-org/sp500-mcp-server"],
"env": {
"SUPABASE_URL": "your_url",
"SUPABASE_ANON_KEY": "your_key"
}
}
}
}