MCP Catalogs
Home

nvim-gemini-companion vs everything

Side-by-side comparison to help you pick between these two MCP servers.

nvim-gemini-companion
by gutsavgupta
everything
by modelcontextprotocol
Stars★ 82★ 85,748
30d uses
Score4577
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageLuaTypeScript
Last commit3 mo agothis month

nvim-gemini-companion · Summary

Neovim plugin integrating Gemini and Qwen AI agents with MCP backend for seamless code assistance.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

nvim-gemini-companion · Use cases

  • Get AI assistance directly in Neovim for code debugging and improvement
  • Switch between multiple AI agents (Gemini and Qwen) for different tasks
  • Manage persistent AI sessions using tmux integration across editor sessions

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-gemini-companion · Install

Installation

Install with your favorite plugin manager:

{
  "gutsavgupta/nvim-gemini-companion",
  dependencies = { "nvim-lua/plenary.nvim" },
  event = "VeryLazy",
  config = function()
    require("gemini").setup()
  end,
  keys = {
    { "<leader>gg", "<cmd>GeminiToggle<cr>", desc = "Toggle Gemini sidebar" },
    { "<leader>gc", "<cmd>GeminiSwitchToCli<cr>", desc = "Spawn or switch to AI session" },
    { '<leader>gS', '<cmd>GeminiSend<cr>', mode = { 'x' }, desc = 'Send selection to Gemini' },
  }
}

Pre-requisites

Install any or both CLI tools and ensure they're in your system's PATH:

  • [gemini-cli](https://github.com/google-gemini/gemini-cli)
  • [qwen-code](https://github.com/QwenLM/qwen-code)

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-everything
Comparison generated from public README + GitHub signals. Last updated automatically.