MCP Catalogs
Home

job-searchoor vs filesystem

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

job-searchoor
by 0xDAEF0F
filesystem
by modelcontextprotocol
Stars★ 63★ 85,748
30d uses
Score3777
Official
Categories
ProductivityAI / LLM ToolsOther
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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.

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

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