jebmcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
jebmcp by flankerhqd | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 235 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsSecurityAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
jebmcp · Summary
MCP server enabling AI assistants to interact with JEB Pro reverse engineering tool for binary analysis.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
jebmcp · Use cases
- Automated vulnerability detection in Android APK files using AI analysis
- Code refactoring assistance with automated renaming of methods and classes
- Reverse engineering support by providing AI-powered analysis of application structure
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
jebmcp · Install
Installation
Requirements
- Python >= 3.11
- uv: https://docs.astral.sh/uv/getting-started/installation/
Steps
- Copy the src/jeb_mcp/MCP.py to $JEB_INSTALLATION_DIR/scripts
- Start the script in JEB GUI (
File->Scripts->Scripts selector...) - Add the MCP server configuration in your client (e.g., Cline, Cursor)
Example configuration:
{
"mcpServers": {
"jeb": {
"command": "uv",
"args": ["--directory", "jeb-mcp/src/jeb_mcp", "run", "server.py"],
"timeout": 1800,
"disabled": false
}
}
}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.