iron-manus-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
iron-manus-mcp by dnnyngyen | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 65 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
iron-manus-mcp · Summary
Model Context Protocol server for AI workflow orchestration with 8-phase agent delegation and todo-based task dispatch.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
iron-manus-mcp · Use cases
- Multi-agent AI systems requiring task decomposition and coordination
- API integration and discovery with security protection
- Complex project planning and execution with phase-based workflows
- Python computational tasks in isolated environments
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
iron-manus-mcp · Install
Installation
From source:
git clone https://github.com/dnnyngyen/iron-manus-mcp
cd iron-manus-mcp
npm install
npm run build
npm startDocker:
docker build -t iron-manus-mcp .
docker run -d --name iron-manus-mcp iron-manus-mcpMCP Integration: Add to Claude Code:
claude mcp add iron-manus-mcp node dist/index.jsOr add to your MCP config:
{
"mcpServers": {
"iron-manus-mcp": {
"command": "node",
"args": ["path/to/iron-manus-mcp/dist/index.js"]
}
}
}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.