everything vs WEBGhosting-MCP
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | WEBGhosting-MCP by yranjan06 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 29 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Browser AutomationWeb ScrapingAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
WEBGhosting-MCP · Summary
Intelligent stealth browser MCP server with anti-fingerprinting for AI agents to browse the web undetected.
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
WEBGhosting-MCP · Use cases
- Web scraping while avoiding detection
- Voice-controlled AI browsing
- Data extraction from dynamic websites
- Automated web testing and interaction
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-everythingWEBGhosting-MCP · Install
- Download the binary for your platform from the releases page
- Configure your MCP client:
{
"servers": {
"webghosting": {
"type": "stdio",
"command": "/path/to/webmcp",
"env": {
"AI_API_KEY": "your-api-key",
"AI_BASE_URL": "https://api.openai.com/v1",
"AI_MODEL": "gpt-4o"
}
}
}
}- Start the MCP server in your compatible IDE or agent (Cursor, Claude Code, etc.)