everything vs slither-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | slither-mcp by trailofbits | |
|---|---|---|
| Stars | ★ 85,748 | ★ 89 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsSecurityAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
slither-mcp · Summary
An MCP server wrapping Slither for static analysis of Solidity smart contracts.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
slither-mcp · Use cases
- Security auditing of smart contracts by identifying potential vulnerabilities
- Code documentation generation for Solidity projects
- Automated analysis of contract inheritance hierarchies and function relationships
- Integration with LLM assistants to provide contextual information about Solidity code
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingslither-mcp · Install
Installation
This project uses UV for package management:
# Install dependencies
uv sync
# Or install in development mode
uv pip install -e .Usage
Basic Usage
Start the Slither MCP server:
uv run slither-mcpClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"slither-mcp": {
"command": "uvx",
"args": ["--from", "git+https://github.com/trailofbits/slither-mcp", "slither-mcp"]
}
}
}