filesystem vs mcp-nixos
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | mcp-nixos by utensils | |
|---|---|---|
| Stars | ★ 85,748 | ★ 639 |
| 30d uses | — | — |
| Score | 77 | 54 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Python |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-nixos · Summary
MCP-NixOS provides real-time NixOS package, option, and documentation data to prevent AI hallucinations.
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-nixos · Use cases
- AI assistants providing accurate NixOS package and configuration information
- NixOS system administrators querying package options and documentation
- Developers working with Nix who need instant access to package metadata and version history
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.
mcp-nixos · Install
Installation
**You DON'T need Nix installed.** This runs anywhere Python runs.
# Run directly (no install)
uvx mcp-nixos
# Or install
pip install mcp-nixosFor Nix users:
nix run github:utensils/mcp-nixos
nix profile install github:utensils/mcp-nixosClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"nixos": {
"command": "uvx",
"args": ["mcp-nixos"]
}
}
}