time vs McpToolsSdkBased
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | McpToolsSdkBased by srogmann | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 27 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | File SystemDeveloper 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.
McpToolsSdkBased · Summary
Java-based MCP server SDK providing file search, read, and edit 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
McpToolsSdkBased · Use cases
- As a template for building MCP tools in Java environments
- Providing file manipulation capabilities within MCP-enabled applications
- Demonstrating how to adapt existing tools from McpToolPlayground for MCP
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"]
}
}
}McpToolsSdkBased · Install
Installation
This is a Java-based MCP server using Spring Boot. The project appears to be set up as a standard Maven/Gradle project:
- Clone the repository
- Build with Maven:
mvn clean install - Run the application:
mvn spring-boot:run
Integration with Claude Desktop
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-tools-sdk-based": {
"command": "java",
"args": ["-jar", "path/to/your/built.jar"]
}
}
}