time vs maven-decoder-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | maven-decoder-mcp by salitaba | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsFile System |
| 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.
maven-decoder-mcp · Summary
An MCP server for analyzing Maven jar files, extracting source code, and resolving dependencies in Java projects.
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
maven-decoder-mcp · Use cases
- AI agents analyzing Java dependencies in Maven projects
- Decompiling compiled classes when source jars are unavailable
- Finding and resolving Maven dependency conflicts
- Extracting source code from specific Java classes or methods
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"]
}
}
}maven-decoder-mcp · Install
Installation
One-Line Install (Recommended)
curl -fsSL https://raw.githubusercontent.com/salitaba/maven-decoder-mcp/main/install.sh | bashUsing uvx
# Install uv (if not installed)
curl -Ls https://astral.sh/uv/install.sh | sh
# Ensure your shell PATH is updated
# Run the server via uvx
uvx maven-decoder-mcpUsing npm
npm install -g maven-decoder-mcp
maven-decoder-mcpDocker
docker run --rm -it \
-v ~/.m2:/home/mcpuser/.m2 \
-v $(pwd):/workspace \
ali79taba/maven-decoder-mcp:latestClaude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"maven-decoder": {
"command": "uvx",
"args": ["maven-decoder-mcp"]
}
}
}