Hi everyone,
I’m currently setting up Cursor to work with mcp‑neovim‑server for AI-assisted Neovim plugin development. I have followed the documentation (see Model Context Protocol docs) and configured my MCP server in my Cursor configuration file as follows:
{
"mcpServers": {
"MCP Neovim Server": {
"command": "npx",
"args": ["-y", "mcp-neovim-server"],
"env": {
"NVIM_SOCKET_PATH": "/tmp/nvim",
"ALLOW_SHELL_COMMANDS": "true"
}
}
}
}
I am running Neovim with the following command:
nvim --listen /tmp/nvim
According to the docs, I should be able to see an “MCP Servers” panel within Cursor or be able to call MCP tools (like vim_command
, vim_status
, etc.) from the Chat interface. However, I cannot find any such panel in the Cursor UI, and I’m not sure how to invoke these MCP tools.
Could someone please advise on:
- How to access the MCP Servers panel in Cursor (or what its exact name is)?
- How can I call MCP tools (e.g.,
vim_command
,vim_status
) from within Cursor’s interface or chat?
Any help or pointers to additional documentation would be greatly appreciated!
Thanks in advance.