time vs slither-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | slither-mcp by trailofbits | |
|---|---|---|
| Stars | ★ 85,748 | ★ 89 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 开发者工具安全AI / LLM 工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
slither-mcp · 概述
一个包装 Slither 的 MCP 服务器,用于静态分析 Solidity 智能合约。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
slither-mcp · 使用场景
- 通过识别潜在漏洞对智能合约进行安全审计
- 为 Solidity 项目生成代码文档
- 自动分析合约继承层次结构和函数关系
- 与 LLM 助手集成以提供有关 Solidity 代码的上下文信息
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"]
}
}
}slither-mcp · 安装
安装
此项目使用 UV 进行包管理:
# 安装依赖
uv sync
# 或者在开发模式下安装
uv pip install -e .使用
基本用法
启动 Slither MCP 服务器:
uv run slither-mcpClaude Desktop 配置
添加到 claude_desktop_config.json:
{
"mcpServers": {
"slither-mcp": {
"command": "uvx",
"args": ["--from", "git+https://github.com/trailofbits/slither-mcp", "slither-mcp"]
}
}
}