MCP Catalogs
Home

ultimate_mcp_server vs mcp-google-sheets

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

ultimate_mcp_server
by Dicklesworthstone
mcp-google-sheets
by xing5
Stars★ 149★ 864
30d uses
Score8554
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
ProductivityDeveloper ToolsAI / LLM Tools
LanguagePythonPython
Last commit2 mo agothis month

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-google-sheets · Summary

A production-ready MCP server for Google Sheets integration with comprehensive tool support and authentication options.

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-google-sheets · Use cases

  • Automate data entry and updates in spreadsheets through natural language commands
  • Create and manage reports and dashboards using AI-driven analysis
  • Enable collaborative workflows between AI systems and Google Sheets

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

mcp-google-sheets · Install

Quick Start

# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh

# Set environment variables
export SERVICE_ACCOUNT_PATH="/path/to/your/service-account-key.json"
export DRIVE_FOLDER_ID="YOUR_DRIVE_FOLDER_ID"

# Run the server
uvx mcp-google-sheets@latest

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "google-sheets": {
      "command": "uvx",
      "args": ["mcp-google-sheets@latest"],
      "env": {
        "SERVICE_ACCOUNT_PATH": "/path/to/credentials.json"
      }
    }
  }
}

For tool filtering:

{
  "mcpServers": {
    "google-sheets": {
      "command": "uvx",
      "args": ["mcp-google-sheets@latest", "--include-tools", "get_sheet_data,update_cells,list_spreadsheets"],
      "env": {
        "SERVICE_ACCOUNT_PATH": "/path/to/credentials.json"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.