time vs mcp-victorialogs
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | mcp-victorialogs by VictoriaMetrics | |
|---|---|---|
| Stars | ★ 85,748 | ★ 73 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 可观测性开发者工具运维基建 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
mcp-victorialogs · 概述
VictoriaLogs MCP 服务器通过模型上下文协议提供对可观测性数据的访问。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
mcp-victorialogs · 使用场景
- 通过 AI 助手查询日志进行系统问题调试
- 使用 AI 驱动的工具自动化可观测性任务
- 通过 LLM 集成使用日志数据创建自定义仪表板
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"]
}
}
}mcp-victorialogs · 安装
安装
Go
go install github.com/VictoriaMetrics/mcp-victorialogs/cmd/mcp-victorialogs@latestDocker
docker run -d --name mcp-victorialogs \
-e VL_INSTANCE_ENTRYPOINT=https://your-victorialogs-url \
-e MCP_SERVER_MODE=http \
-e MCP_LISTEN_ADDR=:8081 \
-p 8081:8081 \
ghcr.io/victoriametrics/mcp-victorialogsClaude Desktop 配置
{
"mcpServers": {
"victorialogs": {
"command": "mcp-victorialogs",
"args": ["--env", "VL_INSTANCE_ENTRYPOINT=https://your-victorialogs-url"]
}
}
}