time vs jadx-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | jadx-mcp-server by Qtty | |
|---|---|---|
| Stars | ★ 85,748 | ★ 23 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Java |
| Last commit | this month | 9 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
jadx-mcp-server · Summary
A pure-Java MCP server enabling AI assistants to analyze and decompile Android APK files using JADX.
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
jadx-mcp-server · Use cases
- Security researchers analyzing Android malware for defensive purposes
- Developers reviewing third-party SDKs before integration
- Analysts performing vulnerability assessments on Android applications
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"]
}
}
}jadx-mcp-server · Install
Installation
- Clone the repository
git clone <repository-url>
cd jadx-mcp-server- Build the project
chmod +x build.sh
./build.shOr build with Maven:
mvn clean package- Configure Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"jadx-analyzer": {
"command": "java",
"args": [
"-Dspring.ai.mcp.server.stdio=true",
"-jar",
"/path/to/jadx-mcp-server/target/jadx-mcp-server-1.0.0.jar"
]
}
}
}