MCP Catalogs
Home

webfetch-mcp vs everything

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

webfetch-mcp
by manooll
everything
by modelcontextprotocol
Stars★ 26★ 85,748
30d uses
Score4177
Official
Categories
Web ScrapingSearchAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit7 mo agothis month

webfetch-mcp · Summary

An MCP server providing real-time web access with tunable search and clean content extraction for local AI models.

everything · Summary

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

webfetch-mcp · Use cases

  • Research assistants accessing the latest academic papers and technical documentation
  • Local AI models staying current with news and real-time information
  • Content extraction for analysis while filtering out ads and navigation elements
  • Scientific research across multiple specialized databases with targeted queries

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

webfetch-mcp · Install

Installation

Prerequisites

  • Node.js 18+
  • Docker & Docker Compose
  • SearxNG instance

Steps

  1. Install SearxNG:
git clone https://github.com/searxng/searxng-docker.git
cd searxng-docker
sed -i "s|ultrasecretkey|$(openssl rand -hex 32)|g" searxng/settings.yml
docker compose up -d
  1. Install WebFetch.MCP:
git clone https://github.com/manull/webfetch-mcp.git
cd webfetch-mcp
npm install
node server.mjs
  1. Configure in LM Studio or Claude Desktop:
{
  "mcpServers": {
    "webfetch": {
      "command": "node",
      "args": ["/full/path/to/webfetch-mcp/server.mjs"],
      "env": {
        "SEARXNG_BASE": "http://localhost:8080"
      }
    }
  }
}

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.