MCP Catalogs
Home

ultimate_mcp_server vs go-mcp-mysql

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

ultimate_mcp_server
by Dicklesworthstone
go-mcp-mysql
by Zhwt
Stars★ 149★ 53
30d uses
Score8544
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
DatabaseDeveloper ToolsAI / LLM Tools
LanguagePythonGo
Last commit2 mo ago4 mo ago

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.

go-mcp-mysql · Summary

A production-ready Go-based MCP server for MySQL database operations with read-only mode and query plan checking.

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

go-mcp-mysql · Use cases

  • Automating database queries and data analysis through AI assistants
  • Enabling natural language interfaces for MySQL database operations
  • Safely exploring database structures with read-only access before making changes

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

go-mcp-mysql · Install

Installation

Option 1: Download Binary

  1. Get the latest [release](https://github.com/Zhwt/go-mcp-mysql/releases)
  2. Place it in your $PATH or easily accessible location

Option 2: Build from Source

go install -v github.com/Zhwt/go-mcp-mysql@latest

Configuration

Add to Claude Desktop configuration:

{
  "mcpServers": {
    "mysql": {
      "command": "go-mcp-mysql",
      "args": [
        "--host", "localhost",
        "--user", "root",
        "--pass", "password",
        "--port", "3306",
        "--db", "mydb"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.