ultimate_mcp_server vs SQL_MCP_Server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | SQL_MCP_Server by pawankumar94 | |
|---|---|---|
| Stars | ★ 149 | ★ 13 |
| 30d uses | — | — |
| Score | 85 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 11 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.
SQL_MCP_Server · Summary
SQLGenius is an MCP server that converts natural language to SQL queries using Gemini Pro with BigQuery integration.
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
SQL_MCP_Server · Use cases
- Business analysts exploring data without writing SQL
- Data teams creating dashboards for non-technical stakeholders
- Developers prototyping queries before implementation
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_serverSQL_MCP_Server · Install
Installation
- Clone the repository:
git clone https://github.com/pawankumar94/sql_mcp_server.git
cd sql_mcp_server- Install dependencies:
pip install -r requirements.txt- Set up environment variables:
cp .env.example .env
# Edit .env with your BigQuery credentials- Launch with Streamlit:
streamlit run streamlit_app.pyFor Claude Desktop integration, add this to your config.json:
{
"mcpServers": {
"sqlgenius": {
"command": "python",
"args": ["path/to/sql_mcp_server/sql_mcp_server.py"]
}
}
}