MCP-Developer-SubAgent vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
MCP-Developer-SubAgent by gensecaihq | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsSecurity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 9 mo ago | this month |
MCP-Developer-SubAgent · Summary
Production-ready framework with 8 Claude Code sub-agents and FastMCP templates for MCP development.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
MCP-Developer-SubAgent · Use cases
- Developing new MCP servers with specialized security and authentication
- Creating complex MCP toolsets using the orchestration system
- Validating existing MCP implementations for compliance and security
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
MCP-Developer-SubAgent · Install
Installation
Quick Start (Cross-Platform)
# Clone the repository
git clone https://github.com/gensecaihq/MCP-Developer-SubAgent.git
cd MCP-Developer-SubAgent
# Check platform compatibility
python3 claude_code_sdk/cli_simple.py validate-setup
# Install dependencies
pip install -e .For Claude Desktop Integration
Add to Claude Desktop config.json:
{
"mcpServers": {
"mcp-developer": {
"command": "python",
"args": ["-m", "claude_code_sdk.cli"]
}
}
}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.