domain-search-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
domain-search-mcp by dorukardahan | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 4 mo ago | this month |
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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
domain-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"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything