time vs codeprism
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | codeprism by rustic-ai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Rust |
| Last commit | this month | 3 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
codeprism · Summary
100% AI-generated MCP server providing code intelligence through graph-based analysis of codebases.
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
codeprism · Use cases
- AI-assisted code analysis and refactoring
- Repository exploration and documentation generation
- Code quality and security vulnerability detection
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"]
}
}
}codeprism · Install
# Clone and build
git clone https://github.com/rustic-ai/codeprism
cd codeprism
cargo build --release
# Verify installation
./target/release/codeprism --helpFor Claude Desktop integration:
// ~/.config/claude-desktop/claude_desktop_config.json
{
"mcpServers": {
"codeprism": {
"command": "/path/to/codeprism/target/release/codeprism",
"args": ["--mcp"],
"env": {
"CODEPRISM_PROFILE": "development",
"RUST_LOG": "info"
}
}
}
}