everything vs lsbot
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | lsbot by ruilisi | |
|---|---|---|
| Stars | ★ 85,748 | ★ 409 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsSecurityAI / LLM ToolsCommunication |
| Language | TypeScript | Go |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
lsbot · Summary
A lean, secure bot with MCP protocol integration and end-to-end encryption for AI applications.
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
lsbot · Use cases
- Secure AI assistant with local data processing and encrypted communication
- Automated workflow integration with messaging platforms like WeChat Work and Slack
- Browser automation without Node.js dependencies using CDP protocol
- Cross-platform file management and system control through AI agents
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-everythinglsbot · Install
# macOS / Linux / WSL
curl -fsSL https://files.lingti.com/install-lsbot.sh | bash
# Windows (PowerShell)
irm https://files.lingti.com/install-lsbot.ps1 | iexFor Claude Desktop integration, add this to Claude Desktop's config.json:
{
"mcpServers": {
"lsbot": {
"command": "lsbot",
"args": ["mcp"]
}
}
}