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 | — | — |
| Score | 47 | 85 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsWeb Scraping | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 8 mo ago | 2 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 claudeInstalling 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 requestsALLOW_MUTATIONS: Enable mutation operations (disabled by default)NAME: Name of the MCP serverSCHEMA: Path to a local GraphQL schema file or URL (optional)
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_server