glance vs everything
Side-by-side comparison to help you pick between these two MCP servers.
glance by DebugBase | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 149 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationDeveloper Toolstesting | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
glance · Summary
AI-powered browser automation MCP server for Claude Code with 30 tools for testing, screenshots, and interaction.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
glance · Use cases
- Automated end-to-end testing of web applications
- Visual regression testing and comparison
- Browser interaction and UI validation from Claude Code
- Debugging web applications by inspecting live pages
- Accessibility testing with DOM snapshots
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
glance · Install
Install Glance MCP server:
npm install -g glance-mcpOr add directly to Claude Code:
claude mcp add glance -- npx glance-mcpConfigure your .mcp.json:
{
"mcpServers": {
"glance": {
"command": "npx",
"args": ["glance-mcp"],
"env": {
"BROWSER_HEADLESS": "false"
}
}
}
}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