boss-agent-cli vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
boss-agent-cli by can4hou6joeng4 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 568 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
boss-agent-cli · Summary
An AI-agent CLI tool for BOSS Zhipin job platform with MCP integration.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
boss-agent-cli · Use cases
- AI agents automating job search workflows on BOSS Zhipin
- Job seekers using AI to optimize resumes and apply for positions
- Recruiters managing candidates and applications through automation
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
boss-agent-cli · Install
Install via uv:
uv tool install boss-agent-cli
patchright install chromiumFor Claude Desktop MCP server configuration:
{
"mcpServers": {
"boss-agent": {
"command": "boss",
"args": ["mcp"]
}
}
}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.