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 | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | ProductivityAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| 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.
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
- 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.
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.