domain-search-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
domain-search-mcp by dorukardahan | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 42 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
domain-search-mcp · 概述
一个零配置域名搜索 MCP 服务器,支持多后缀检查、批量搜索、域名溢价检测、AI 建议和注册商价格比较。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
domain-search-mcp · 使用场景
- 开发者为新项目检查域名可用性
- 域名投资者使用溢价检测研究有价值的域名
- 品牌团队使用 AI 生成域名建议
- 企业在购买前比较注册商价格
- DevOps 团队将域名检查集成到 CI/CD 工作流
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
domain-search-mcp · 安装
安装
使用 npx(推荐)
npx -y domain-search-mcp@latest从源码安装
git clone https://github.com/dorukardahan/domain-search-mcp.git
cd domain-search-mcp
npm install
npm run build
npm startClaude Desktop 配置
添加到 claude_desktop_config.json:
{
"mcpServers": {
"domain-search": {
"command": "npx",
"args": ["-y", "domain-search-mcp@latest"]
}
}
}Claude Code 配置
在项目根目录添加 .mcp.json:
{
"mcpServers": {
"domain-search": {
"type": "stdio",
"command": "npx",
"args": ["-y", "domain-search-mcp@latest"]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything