mcpls vs time
并排对比,帮你在这两个 MCP server 之间做选择。
mcpls by bug-ops | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 34 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具运维基建 | 效率工具开发者工具沟通协作 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 本月 | 本月 |
mcpls · 概述
通用 MCP 到 LSP 桥接器,将语言服务器协议功能作为 MCP 工具暴露给 AI 代理。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
mcpls · 使用场景
- 通过真实的类型信息和交叉引用增强 AI 代码分析
- 通过符号重命名实现整个代码库的安全重构
- 提供来自实际编译器错误的准确诊断
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
mcpls · 安装
安装
cargo install mcpls或从 GitHub Releases 下载预构建的二进制文件。
配置 Claude Code
添加到 ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"mcpls": {
"command": "mcpls",
"args": []
}
}
}先决条件
安装至少一个语言服务器:
- 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 · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}