MCP Catalogs
Home

everything vs Custom-MCP-Server

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

everything
by modelcontextprotocol
Custom-MCP-Server
by Sharan-Kumar-R
Stars★ 85,748★ 75
30d uses
Score7740
Official
Categories
Developer ToolsAI / LLM ToolsOther
Web ScrapingDeveloper ToolsOther
LanguageTypeScriptPython
Last committhis month11 mo ago

everything · Summary

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

Custom-MCP-Server · Summary

An MCP server providing scraping tools for LinkedIn, Facebook, Instagram, and Google search.

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

Custom-MCP-Server · Use cases

  • Researching professional backgrounds via LinkedIn profiles
  • Gathering public information about individuals from social media
  • Performing web searches and social media monitoring for intelligence gathering

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

Custom-MCP-Server · Install

Installation

  1. Add MCP to your Python project using uv:
uv init custom-mcp-server
cd custom-mcp-server
uv add "mcp[cli]"
  1. Install additional dependencies:
uv add httpx python-dotenv fastmcp
  1. Add API keys to your .env file:
RAPIDAPI_KEY=your_rapidapi_key_here
SERPER_API_KEY=your_serper_api_key_here
  1. Install the server:
uv run mcp install main.py

For Claude Desktop, restart the app after installation to see the new tools.

Comparison generated from public README + GitHub signals. Last updated automatically.