everything vs ENScan_GO
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | ENScan_GO by wgpsec | |
|---|---|---|
| Stars | ★ 85,748 | ★ 4,392 |
| 30d uses | — | — |
| Score | 77 | 56 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityWeb ScrapingDeveloper Tools |
| Language | TypeScript | Go |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ENScan_GO · Summary
ENScan_GO is a Chinese enterprise information gathering tool that supports MCP server functionality.
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
ENScan_GO · Use cases
- Security researchers gathering Chinese enterprise intelligence for vulnerability assessment
- Analysts conducting supply chain risk analysis of Chinese companies
- Compliance teams monitoring corporate structures and subsidiaries
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-everythingENScan_GO · Install
Installation
Binary Download
- Download precompiled binaries from [GitHub Releases](https://github.com/wgpsec/ENScan_GO/releases)
- Extract the archive
- Run with
./enscan -vto generate config file
From Source
git clone https://github.com/wgpsec/ENScan_GO.git
cd ENScan_GO
go build -o enscan .
./enscan -vMCP Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"enscan": {
"command": "path/to/enscan",
"args": ["--mcp"]
}
}
}