MCP Catalogs
Home

everything vs kindly-web-search-mcp-server

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

everything
by modelcontextprotocol
kindly-web-search-mcp-server
by Shelpuk-AI-Technology-Consulting
Stars★ 85,748★ 325
30d uses
Score7750
Official
Categories
Developer ToolsAI / LLM ToolsOther
Web ScrapingAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last committhis month1 mo ago

everything · Summary

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

kindly-web-search-mcp-server · Summary

Web search MCP server with robust content retrieval for AI coding tools and agents.

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

kindly-web-search-mcp-server · Use cases

  • Improving AI coding assistants by providing complete StackOverflow and GitHub discussions
  • Retrieving up-to-date documentation and API references for programming
  • Enhancing AI agents with comprehensive web search and content extraction capabilities

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

kindly-web-search-mcp-server · Install

Installation

  1. Install uvx:
curl -LsSf https://astral.sh/uv/install.sh | sh
  1. Install a Chromium-based browser (required for page_content)
  1. Set your search API key (Serper, Tavily, or SearXNG)
  1. Run the MCP server:
uvx --from git+https://github.com/Shelpuk-AI-Technology-Consulting/kindly-web-search-mcp-server \
  kindly-web-search-mcp-server start-mcp-server

Claude Desktop Configuration

Add to your config.json:

{
  "mcpServers": {
    "kindly-web-search": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/Shelpuk-AI-Technology-Consulting/kindly-web-search-mcp-server", "kindly-web-search-mcp-server", "start-mcp-server"],
      "env": {
        "SERPER_API_KEY": "your-serper-key",
        "GITHUB_TOKEN": "your-github-token"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.