filesystem vs nvim-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | nvim-mcp by paulburgess1357 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 54 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
nvim-mcp · Summary
MCP server connecting AI agents to Neovim via msgpack-RPC, enabling code editing and command execution without plugins.
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
nvim-mcp · Use cases
- AI-assisted coding with direct editor interaction
- Automating repetitive Neovim operations through AI
- Collaborative editing between multiple AI agents in the same Neovim instance
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.
nvim-mcp · Install
Installation
Using uv (recommended)
- Install uv:
curl -LsSf https://astral.sh/uv/install.sh | sh- Register the MCP server with your client. For Cursor, add to
.cursor/mcp.json:
{
"mcpServers": {
"nvim-mcp": {
"command": "uvx",
"args": ["nvim-mcp"]
}
}
}For other clients like Claude Desktop, see the [configuration guide](config/README.md).
Using Nix
Ensure Nix is installed with flakes enabled:
{
"mcpServers": {
"nvim-mcp": {
"command": "nix",
"args": ["run", "github:paulburgess1357/nvim-mcp"]
}
}
}- Add agent rules to specify when and how the AI should use the tools. See the [configuration guide](config/README.md#2-add-agent-rules).
- Start Neovim. It will be auto-discovered on most Linux systems.