Server data from the Official MCP Registry
Connect Claude Code to Vim/Neovim - query state, execute commands, search help, record macros
Connect Claude Code to Vim/Neovim - query state, execute commands, search help, record macros
Valid MCP server (2 strong, 4 medium validity signals). 2 known CVEs in dependencies (0 critical, 2 high severity) Package registry verified. Imported from the Official MCP Registry.
4 files analyzed · 3 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-iggredible-vim-mcp": {
"args": [
"-y",
"vim-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Simple MCP (Model Context Protocol) integration for Vim and Claude Code.
How it works:
/tmp/vim-mcp-server.sockList and select Vim instance:
You can (finally) exit Vim!
For more, check out the demo wiki page
Ok, I get what it does, but why do we need this?
If you're trying to do basic Vim operations like typing "split the window in half" (24 keystrokes) vs running :sp / :vs (3 keystrokes), then you're better off without it. Where vim-mcp shines is when the number of keystrokes is unknown; when you can only describe what you want to do but don't know exactly how to do it. Things like complex regex/macros/lookups, help semantic search, etc. - it's faster to tell AI what you're trying to accomplish than trial-and-error. I think the word I'm looking for is circumlocution?
Here's one scenario where it may be useful:
Suppose you want to perform a complex Vim command that would otherwise take a long time to construct. Claude can easily do it if you can describe what you want to do. Maybe you want to substitute "(test foobar)" with square brackets ONLY IF they come after a 3rd-level Markdown header. That's not something I can easily cook up in seconds... but Claude can!
With vim-mcp, I can prompt Claude:
In README.md, substitute the set of parentheses `(SOME TEXT)` with square brackets `[SOME TEXT]`, where SOME TEXT says "test foobar"; do this if the strings come after a 3rd-level header markdown.
And that's it! When I did it, Claude came up with the g command and executed it for me.
vim-mcp - vim_execute (MCP)(command: "g/^### /,/^#\\{1,3\\} \\|^$/s/(test foobar)/[test foobar]/g")
⎿ Command executed successfully: g/^### /,/^#\{1,3\} \|^$/s/(test foobar)/[test foobar]/g
Bonus: the executed commands are stored in the command history so you can go back and re-execute them or modify them.
What if you later decide, "Hey, I actually don't want to substitute them with square brackets [], I want to substitute them with curly brackets {} instead!" You can just access the command history (q:, :history, or : then press up/down) and make the necessary modifications.
So I did :, then pressed the up arrow a few times until I saw the command that vim-mcp executed, and changed it to :g/^### /,/^#\{1,3\} \|^$/s/(test foobar)/{test foobar}/g. Done!
For a detailed overview, see vim-mcp overview.
Tools:
list_vim_instancesselect_vim_instanceget_vim_statevim_executeexit_vimvim_search_helpvim_record_macroResources:
vim://instances - List of all available Vim instancesvim://state - Current state of the selected Vim instancevim://buffers - List of all buffers in the selected Vim instancevim://tabs - List of all tabs in the selected Vim instance+channel feature OR Neovim 0.5+/tmp directoryUsing vim-plug:
Plug 'iggredible/vim-mcp'
The MCP server is a Node project. You need to install the dependencies.
cd ~/.vim/plugged/vim-mcp # Or wherever your plugin is installed
./install.sh
The install script will automatically:
vim-mcp commandIf you prefer to install manually or the install.sh script doesn't work:
cd ~/.vim/plugged/vim-mcp/server
npm install
npm install will also run chmod +x bin/vim-mcp
vim-mcp command (inside the /server directory):npm link
If this fails due to permissions or other reasons, you can skip global installation and use the full path in your config.
After installation, add one of these configurations to your Claude configuration file:
If global install succeeded (if vim-mcp command is available):
"mcpServers": {
"vim-mcp": {
"command": "vim-mcp",
"args": []
},
}
If npm link failed:
{
"mcpServers": {
"vim-mcp": {
"command": "node",
"args": ["/some/path/.vim/plugged/vim-mcp/server/bin/vim-mcp"]
}
}
}
To remove vim-mcp:
.vimrc:" Delete or comment out this line:
" Plug 'iggredible/vim-mcp'
:PlugClean
vim-mcp command (if installed):npm unlink vim-mcp
Edit the Claude config file and remove the vim-mcp section from mcpServers
rm -f /tmp/vim-mcp-server.sock
rm -f /tmp/vim-mcp-registry.json
rm -f /tmp/vim-mcp-preference.txt
vim file1.txt # First instance
vim file2.txt # Second instance (in another terminal)
list vim instances
select vim instance file1-vim-12345
From the client (claude code), you can:
Manage instances:
Control Vim:
Search Vim help:
Record macros:
Query about Vim:
You can FINALLY exit Vim! Rejoice! The exit_vim tool provides safe exit functionality with three modes:
exit vim save_and_exit)exit vim force_exit)Examples:
exit vim # Safe exit - warns about unsaved changes
exit vim save_and_exit # Save all files and exit
exit vim force_exit # Exit without saving (discard changes)
GET ME OUTTA HERE # You're free! Successfully exited Vim (there were no unsaved changes).
Note: this is a joke tool because many people have a hard time exiting Vim.
The plugin connects automatically when Vim opens. However, you can do these from inside Vim:
:VimMCPStatus - Check connection status:VimMCPConnect - Manually connect to server:VimMCPDisconnect - Disconnect from server:VimMCPReconnect - Reconnect to serverI'm still figuring out how to make this to be more useful. If you have ideas, please feel free to submit a PR!
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
by Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by mcp-marketplace · Developer Tools
Scaffold, build, and publish TypeScript MCP servers to npm — conversationally
by mcp-marketplace · Finance
Free stock data and market news for any MCP-compatible AI assistant.