domain-search-mcp vs time
并排对比,帮你在这两个 MCP server 之间做选择。
domain-search-mcp by dorukardahan | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 42 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
domain-search-mcp · 概述
一个零配置域名搜索 MCP 服务器,支持多后缀检查、批量搜索、域名溢价检测、AI 建议和注册商价格比较。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
domain-search-mcp · 使用场景
- 开发者为新项目检查域名可用性
- 域名投资者使用溢价检测研究有价值的域名
- 品牌团队使用 AI 生成域名建议
- 企业在购买前比较注册商价格
- DevOps 团队将域名检查集成到 CI/CD 工作流
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
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"]
}
}
}time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}