MCP Catalogs
Home

mcp-graphql vs ultimate_mcp_server

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

mcp-graphql
by blurrah
ultimate_mcp_server
by Dicklesworthstone
Stars★ 385★ 149
30d uses
Score4785
Official
Categories
Developer ToolsAI / LLM ToolsWeb Scraping
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit8 mo ago2 mo ago

mcp-graphql · Summary

MCP server enabling LLMs to interact with GraphQL APIs through schema introspection and query execution.

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-graphql · Use cases

  • Enabling AI assistants to query GraphQL APIs without custom implementation
  • Allowing language models to discover and interact with unknown GraphQL services
  • Providing secure read-only access to GraphQL endpoints for AI applications

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-graphql · Install

Installing via Smithery

npx -y @smithery/cli install mcp-graphql --client claude

Installing Manually (Claude Desktop)

Add the following to your Claude Desktop configuration:

{
    "mcpServers": {
        "mcp-graphql": {
            "command": "npx",
            "args": ["mcp-graphql"],
            "env": {
                "ENDPOINT": "http://localhost:3000/graphql"
            }
        }
    }
}

Environment Variables

  • ENDPOINT: GraphQL endpoint URL (default: http://localhost:4000/graphql)
  • HEADERS: JSON string containing headers for requests
  • ALLOW_MUTATIONS: Enable mutation operations (disabled by default)
  • NAME: Name of the MCP server
  • SCHEMA: Path to a local GraphQL schema file or URL (optional)

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.