Files
claude-plugin-nvim-agentic/.mcp.json
T
oleks 6de5cec0e4 v0.2.0: broaden tools, ship neovim MCP server, namespace agent
- agents/companion.md: expand tools to full editor + filesystem + web set
  and grant mcp__neovim__* so the agent can drive nvim directly
- skills/*: each skill's allowed-tools also gains mcp__neovim__*
- .mcp.json: ship the mcp-neovim-server config with the plugin so
  installing the plugin auto-wires the editor MCP (uses default socket
  /run/user/1000/nvim.sock — adjust if your uid differs)
2026-05-21 00:29:23 +03:00

12 lines
193 B
JSON

{
"mcpServers": {
"neovim": {
"command": "npx",
"args": ["-y", "mcp-neovim-server"],
"env": {
"NVIM_SOCKET_PATH": "/run/user/1000/nvim.sock"
}
}
}
}