ultimate_mcp_server vs domain-search-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | domain-search-mcp by dorukardahan | |
|---|---|---|
| Stars | ★ 149 | ★ 20 |
| 30d uses | — | — |
| Score | 85 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| 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.
domain-search-mcp · Summary
A zero-config domain search MCP server with multi-TLD checks, bulk search, premium detection, AI-powered suggestions, and registrar pricing comparison.
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
domain-search-mcp · Use cases
- Developers checking domain availability for new projects
- Domain investors researching valuable domains with premium detection
- Branding teams using AI to generate domain name suggestions
- Businesses comparing registrar pricing before purchasing domains
- DevOps teams integrating domain checks into CI/CD workflows
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_serverdomain-search-mcp · Install
Installation
Using npx (Recommended)
npx -y domain-search-mcp@latestFrom Source
git clone https://github.com/dorukardahan/domain-search-mcp.git
cd domain-search-mcp
npm install
npm run build
npm startClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"domain-search": {
"command": "npx",
"args": ["-y", "domain-search-mcp@latest"]
}
}
}Claude Code Configuration
Add .mcp.json in your project root:
{
"mcpServers": {
"domain-search": {
"type": "stdio",
"command": "npx",
"args": ["-y", "domain-search-mcp@latest"]
}
}
}