MCP Catalogs
Home

everything vs mcp-server-semgrep

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
mcp-server-semgrep
by vetcoders
Stars★ 85,748★ 28
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsSecurityAI / LLM Tools
LanguageTypeScriptJavaScript
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-server-semgrep · Summary

MCP Server Semgrep integrates Semgrep static analysis with AI assistants for code scanning, security detection, and quality improvements.

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

mcp-server-semgrep · Use cases

  • Security vulnerability scanning before deployment
  • Code quality improvement and refactoring assistance
  • Enforcing coding standards and style consistency in teams
  • Educating developers about secure practices

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

mcp-server-semgrep · Install

Installation

Option 1: Install from Smithery.ai (Recommended)

  1. Visit [MCP Server Semgrep on Smithery.ai](https://smithery.ai/server/@VetCoders/mcp-server-semgrep)
  2. Follow the installation instructions to add it to your MCP-compatible clients

Option 2: Install from NPM

npm install -g mcp-server-semgrep

Integration with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "semgrep": {
      "command": "node",
      "args": [
        "/your_path/mcp-server-semgrep/build/index.js"
      ],
      "env": {
        "SEMGREP_APP_TOKEN": "your_semgrep_app_token",
        "MCP_SERVER_SEMGREP_ALLOWED_ROOTS": "/Users/you/projects"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.