MCP Catalogs
Home

linkup-mcp-server vs everything

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

linkup-mcp-server
by LinkupPlatform
everything
by modelcontextprotocol
Stars★ 28★ 85,748
30d uses
Score4477
Official
Categories
SearchWeb ScrapingAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

linkup-mcp-server · Summary

Linkup MCP server provides web search and page fetching capabilities with real-time data and flexible depth options.

everything · Summary

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

linkup-mcp-server · Use cases

  • Real-time research and fact-checking
  • Content summarization from web articles
  • Monitoring current news and events

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

linkup-mcp-server · Install

Installation

Remote MCP Server (recommended)

For Claude Desktop:

{
  "mcpServers": {
    "linkup": {
      "command": "npx",
      "args": ["-y", "linkup-mcp-server", "apiKey=LINKUP_API_KEY"]
    }
  }
}

For Cursor/VSCode/Codex:

{
  "mcpServers": {
    "linkup": {
      "type": "http",
      "url": "https://mcp.linkup.so/mcp?apiKey=LINKUP_API_KEY"
    }
  }
}

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.