mcp-screenshot-website-fast vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-screenshot-website-fast by just-every | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 106 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationWeb ScrapingDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-screenshot-website-fast · Summary
MCP server for fast webpage screenshots optimized for AI vision workflows with automatic tiling.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-screenshot-website-fast · Use cases
- Capture website content for AI analysis and processing
- Automatically take screenshots of dynamic web content for documentation
- Create screencasts of web pages with JavaScript injection capabilities
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
mcp-screenshot-website-fast · Install
Installation
Claude Desktop
Add to ~/.claude/config.json:
{
"mcpServers": {
"screenshot-website-fast": {
"command": "npx",
"args": ["-y", "@just-every/mcp-screenshot-website-fast"]
}
}
}VS Code
code --add-mcp '{"name":"screenshot-website-fast","command":"npx","args":["-y","@just-every/mcp-screenshot-website-fast"]}'Raw JSON (works in any MCP client)
{
"mcpServers": {
"screenshot-website-fast": {
"command": "npx",
"args": ["-y", "@just-every/mcp-screenshot-website-fast"]
}
}
}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