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 | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | ProductivityAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 13 mo ago | this 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
- Install the MCP server via npm:
npm install -g job-searchoor- Configure Claude Desktop by adding this to your
claude_desktop_config.json:
{
"mcpServers": {
"job-search": {
"command": "npx",
"args": ["-y", "job-searchoor"]
}
}
}- 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