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 | — | — |
| Score | 85 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | Python | Go |
| Last commit | 2 mo ago | 4 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
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servergo-mcp-mysql · Install
Installation
Option 1: Download Binary
- Get the latest [release](https://github.com/Zhwt/go-mcp-mysql/releases)
- Place it in your
$PATHor easily accessible location
Option 2: Build from Source
go install -v github.com/Zhwt/go-mcp-mysql@latestConfiguration
Add to Claude Desktop configuration:
{
"mcpServers": {
"mysql": {
"command": "go-mcp-mysql",
"args": [
"--host", "localhost",
"--user", "root",
"--pass", "password",
"--port", "3306",
"--db", "mydb"
]
}
}
}