everything vs slither-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | slither-mcp by trailofbits | |
|---|---|---|
| Stars | ★ 85,748 | ★ 89 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具安全AI / LLM 工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
slither-mcp · 概述
一个包装 Slither 的 MCP 服务器,用于静态分析 Solidity 智能合约。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
slither-mcp · 使用场景
- 通过识别潜在漏洞对智能合约进行安全审计
- 为 Solidity 项目生成代码文档
- 自动分析合约继承层次结构和函数关系
- 与 LLM 助手集成以提供有关 Solidity 代码的上下文信息
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingslither-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"]
}
}
}