time vs MCP-wolfram-alpha
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | MCP-wolfram-alpha by SecretiveShell | |
|---|---|---|
| Stars | ★ 85,748 | ★ 75 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 9 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
MCP-wolfram-alpha · Summary
MCP server connecting to Wolfram Alpha API for computational intelligence and queries.
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
MCP-wolfram-alpha · Use cases
- Perform mathematical calculations and equations through Wolfram Alpha
- Access computational knowledge and data analysis from Wolfram's knowledge engine
- Enhance chat assistants with scientific and computational capabilities
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"]
}
}
}MCP-wolfram-alpha · Install
Installation
- Install the required dependencies (Python and uv):
``bash pip install uv ``
- Clone the repository:
``bash git clone https://github.com/SecretiveShell/MCP-wolfram-alpha.git cd MCP-wolfram-alpha ``
- Set your Wolfram Alpha API key as an environment variable:
``bash export WOLFRAM_API_KEY="your-app-id" ``
- Configure Claude Desktop with the following JSON:
``json { "mcpServers": { "MCP-wolfram-alpha": { "command": "uv", "args": [ "--directory", "/path/to/MCP-wolfram-alpha", "run", "MCP-wolfram-alpha" ], "env": { "WOLFRAM_API_KEY": "your-app-id" } } } } ``