time vs optuna-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | optuna-mcp by optuna | |
|---|---|---|
| Stars | ★ 85,748 | ★ 76 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsOther |
| 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.
optuna-mcp · Summary
Optuna MCP server automates hyperparameter optimization and analysis via interactive tools.
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
optuna-mcp · Use cases
- Automated hyperparameter optimization by LLMs
- Interactive analysis of optimization results via chat interface
- Optimizing input parameters for other MCP tools
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"]
}
}
}optuna-mcp · Install
Installation
Using uv:
{
"mcpServers": {
"Optuna": {
"command": "/path/to/uvx",
"args": [
"optuna-mcp"
]
}
}
}Using Docker:
{
"mcpServers": {
"Optuna": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--net=host",
"-v",
"/PATH/TO/LOCAL/DIRECTORY/WHICH/INCLUDES/DB/FILE:/app/workspace",
"ghcr.io/optuna/optuna-mcp:latest",
"--storage",
"sqlite:////app/workspace/optuna.db"
]
}
}
}