automcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
automcp by lirantal | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 5 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
automcp · Summary
AutoMCP automatically detects your package.json dependencies and configures MCP servers for your coding agents.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
automcp · Use cases
- Automatically setting up MCP servers for JavaScript/Node.js projects based on dependencies
- Maintaining consistent MCP configurations across multiple projects in a team
- Quickly experimenting with MCP servers for packages in a new project
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
automcp · Install
Installation
Run with npx (no install required):
npx automcpOr add as a dev dependency:
npm add -D automcpUsage
# Basic usage
npx automcp
# Preview changes
npx automcp --dry-run
# Include devDependencies
npx automcp --include-dev
# Target specific agent
npx automcp --agent cursorConfiguration
AutoMCP automatically detects agent configuration files:
- Cursor:
.cursor/mcp.jsonin project directory - VS Code:
.vscode/mcp.jsonin project directory
The tool will add GitMCP servers to your existing configuration without overwriting existing entries.
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.