everything vs nvim-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | nvim-mcp by paulburgess1357 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 54 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
nvim-mcp · Summary
MCP server connecting AI agents to Neovim via msgpack-RPC, enabling code editing and command execution without plugins.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingnvim-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.