domain-search-mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
domain-search-mcp by dorukardahan | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 42 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
domain-search-mcp · 概述
一个零配置域名搜索 MCP 服务器,支持多后缀检查、批量搜索、域名溢价检测、AI 建议和注册商价格比较。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
domain-search-mcp · 使用场景
- 开发者为新项目检查域名可用性
- 域名投资者使用溢价检测研究有价值的域名
- 品牌团队使用 AI 生成域名建议
- 企业在购买前比较注册商价格
- DevOps 团队将域名检查集成到 CI/CD 工作流
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 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"]
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。