MCP Catalogs
Home

mcp-gemini-server vs ultimate_mcp_server

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

mcp-gemini-server
by bsmi021
ultimate_mcp_server
by Dicklesworthstone
Stars★ 35★ 149
30d uses
Score4185
Official
Categories
AI / LLM ToolsDeveloper ToolsMedia
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit12 mo ago2 mo ago

mcp-gemini-server · Summary

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

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

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

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

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" } } } } ``

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.