mcpls vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcpls by bug-ops | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 34 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | ProductivityDeveloper ToolsCommunication |
| Language | Rust | TypeScript |
| Last commit | this month | this month |
mcpls · Summary
Universal MCP to LSP bridge that exposes Language Server Protocol capabilities as MCP tools for AI agents.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcpls · Use cases
- Enhancing AI code analysis with real type information and cross-references
- Enabling safe refactoring across entire codebases with symbol renaming
- Providing accurate diagnostics from actual compiler errors
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
mcpls · Install
Installation
cargo install mcplsOr download pre-built binaries from GitHub Releases.
Configure Claude Code
Add to ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"mcpls": {
"command": "mcpls",
"args": []
}
}
}Prerequisites
Install at least one language server:
- Rust:
rustup component add rust-analyzer - Python:
npm install -g pyright - TypeScript:
npm install -g typescript-language-server typescript - Go:
go install golang.org/x/tools/gopls@latest
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"]
}
}
}