MCP Catalogs
Home

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
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsSecurityAI / LLM Tools
LanguageTypeScriptPython
Last committhis monththis 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-everything

slither-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-mcp

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "slither-mcp": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/trailofbits/slither-mcp", "slither-mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.