everything vs Sentinelgate
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | Sentinelgate by Sentinel-Gate | |
|---|---|---|
| Stars | ★ 85,748 | ★ 25 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityDeveloper ToolsOps & Infra |
| Language | TypeScript | Go |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Sentinelgate · Summary
SentinelGate provides MCP proxy with policy enforcement and auditing for AI agent actions.
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
Sentinelgate · Use cases
- Preventing prompt injection attacks through external content
- Blocking destructive commands during cleanup operations
- Stopping unauthorized data exfiltration via API calls
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-everythingSentinelgate · Install
Installation
**macOS / Linux:**
curl -sSfL https://raw.githubusercontent.com/Sentinel-Gate/Sentinelgate/main/install.sh | sh**Windows PowerShell:**
irm https://raw.githubusercontent.com/Sentinel-Gate/Sentinelgate/main/install.ps1 | iexClaude Desktop Configuration
To use with Claude Desktop, add to your config.json:
{
"mcpServers": {
"sentinelgate": {
"command": "sentinelgate",
"args": ["serve"]
}
}
}