domain-search-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
domain-search-mcp by dorukardahan | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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"]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using 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 Extension
Click the installation buttons in the README to install directly in VS Code.