MCP Catalogs
Home

mcp-gemini-server vs everything

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

mcp-gemini-server
by bsmi021
everything
by modelcontextprotocol
Stars★ 35★ 85,748
30d uses
Score4177
Official
Categories
AI / LLM ToolsDeveloper ToolsMedia
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit12 mo agothis month

mcp-gemini-server · Summary

A TypeScript MCP server wrapping Google Gemini API, offering tools for text generation, multimedia analysis, and function calling.

everything · Summary

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

mcp-gemini-server · Use cases

  • Analyzing YouTube videos for educational content summarization
  • Generating text content with system instructions and cached context
  • Performing web content analysis through URL processing

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

mcp-gemini-server · Install

Installation & Setup

  1. **Clone/Place Project:** Ensure the mcp-gemini-server project directory is accessible.
  2. **Install Dependencies:**

``bash npm install ``

  1. **Build Project:**

``bash npm run build ``

  1. **Generate Connection Token:** Create a secure token using Node.js crypto:

``bash node -e "console.log(require('crypto').randomBytes(32).toString('hex'))" ``

  1. **Configure MCP Client:** Add to your settings file:

``json { "mcpServers": { "gemini-server": { "command": "node", "args": ["/path/to/mcp-gemini-server/dist/server.js"], "env": { "GOOGLE_GEMINI_API_KEY": "YOUR_API_KEY", "MCP_SERVER_HOST": "localhost", "MCP_SERVER_PORT": "8080", "MCP_CONNECTION_TOKEN": "YOUR_GENERATED_CONNECTION_TOKEN", "GOOGLE_GEMINI_MODEL": "gemini-1.5-flash" } } } } ``

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.