MCP Catalogs
Home

job-searchoor vs everything

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

job-searchoor
by 0xDAEF0F
everything
by modelcontextprotocol
Stars★ 63★ 85,748
30d uses
Score3777
Official
Categories
ProductivityAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit13 mo agothis month

job-searchoor · Summary

A job search MCP server that provides tools to filter and find relevant job opportunities based on keywords, location, and recency.

everything · Summary

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

job-searchoor · Use cases

  • AI assistants helping users find job opportunities based on their skills and preferences
  • Automated job search workflows that filter and present relevant positions
  • Integration with career planning tools to match job listings with user profiles

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

job-searchoor · Install

Installation

  1. Install the MCP server via npm:
npm install -g job-searchoor
  1. Configure Claude Desktop by adding this to your claude_desktop_config.json:
{
  "mcpServers": {
    "job-search": {
      "command": "npx",
      "args": ["-y", "job-searchoor"]
    }
  }
}
  1. Restart Claude Desktop to activate the server.

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.