nvim-mcp 0.7.2

MCP server for Neovim
Documentation
1
2
3
4
5
local clients = vim.lsp.get_clients()
local result = vim.tbl_map(function(client)
    return { name = client.name, id = client.id }
end, clients)
return vim.json.encode(result)