MCP Catalogs
Home

mcp-read-website-fast vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-read-website-fast
by just-every
everything
by modelcontextprotocol
Stars★ 146★ 85,748
30d uses
Score4877
Official
Categories
Web ScrapingAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

mcp-read-website-fast · Summary

A fast, token-efficient MCP server that converts websites to clean Markdown for AI agents.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-read-website-fast · Use cases

  • Research assistants quickly summarizing web articles
  • AI developers building knowledge graphs from web content
  • Content creators aggregating information from multiple sources

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-read-website-fast · Install

Installation

Claude Code

claude mcp add read-website-fast -s user -- npx -y @just-every/mcp-read-website-fast

VS Code

code --add-mcp '{"name":"read-website-fast","command":"npx","args":["-y","@just-every/mcp-read-website-fast"]}'

Raw JSON (works in any MCP client)

{
  "mcpServers": {
    "read-website-fast": {
      "command": "npx",
      "args": ["-y", "@just-every/mcp-read-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
Comparison generated from public README + GitHub signals. Last updated automatically.