filesystem vs unplugin-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | unplugin-mcp by situ2001 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 31 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
unplugin-mcp · Summary
A unified plugin for integrating MCP servers into JavaScript build tools like Webpack, Rollup, and Vite.
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
unplugin-mcp · Use cases
- Enable AI assistants to understand module dependencies and build configurations during development
- Allow AI to debug build errors and provide suggestions for fixing them
- Integrate AI directly into the build process to automatically optimize bundling or resolve dependencies
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.
unplugin-mcp · Install
# Install the plugin
pnpm add -D unplugin-mcp
# or install bundler-specific one
pnpm add -D rollup-plugin-mcpFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"rollup": {
"url": "http://localhost:14514/mcp/sse"
}
}
}