mcp-neovim-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-neovim-server by bigcodegen | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 312 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 7 mo ago | this month |
mcp-neovim-server · Summary
MCP server for controlling Neovim with 19 tools for editing, navigation, buffer management and workflow automation.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-neovim-server · Use cases
- AI-assisted coding in Neovim with direct buffer manipulation and code editing capabilities
- Automated text processing and file management through Neovim commands
- Complex development workflow automation combining multiple Vim operations
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-neovim-server · Install
Installation Options
Option 1: DXT Package (Recommended)
- Download the latest
.dxtfile from [Releases](https://github.com/bigcodegen/mcp-neovim-server/releases) - Drag the file to Claude Desktop
Option 2: Manual Installation
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"MCP Neovim Server": {
"command": "npx",
"args": [
"-y",
"mcp-neovim-server"
],
"env": {
"ALLOW_SHELL_COMMANDS": "true",
"NVIM_SOCKET_PATH": "/tmp/nvim"
}
}
}
}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.