mcp-armor vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-armor by aira-security | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 115 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
mcp-armor · Summary
MCP Armor is a security scanner that discovers, analyzes, and secures MCP servers integrated with various Agentic IDEs and clients.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-armor · Use cases
- Security auditing of MCP servers integrated into development environments
- Detecting malicious modifications in MCP tools and resources
- Establishing security baselines and monitoring for drifts in MCP configurations
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-armor · Install
pip install mcp-armorFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-armor": {
"command": "mcp-armor",
"args": []
}
}
}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.