time vs solon-ai
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | solon-ai by opensolon | |
|---|---|---|
| Stars | ★ 85,748 | ★ 385 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | Java |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
solon-ai · Summary
Solon-AI is a Java framework for building AI applications with MCP integration, supporting various LLM providers and multi-agent systems.
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
solon-ai · Use cases
- Building autonomous agents with tool integration
- Developing RAG-based knowledge bases
- Creating multi-agent collaborative systems
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"]
}
}
}solon-ai · Install
Installation
- Add Solon-AI to your Maven project:
<dependency>
<groupId>org.noear</groupId>
<artifactId>solon-ai</artifactId>
<version>latest</version>
</dependency>- For Claude Desktop MCP integration, add to
claude_desktop_config.json:
{
"mcpServers": {
"solon-ai": {
"command": "java",
"args": ["-jar", "path/to/solon-ai-mcp.jar"],
"env": {}
}
}
}