mcp-domain-availability vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-domain-availability by imprvhub | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 49 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 7 mo ago | this month |
mcp-domain-availability · Summary
A domain availability MCP server that checks domain names across 50+ TLDs with DNS/WHOIS verification.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-domain-availability · Use cases
- Checking domain availability for startups during naming process
- Bulk checking multiple TLDs for a potential brand name
- Verifying if a specific domain name is available before purchase
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
mcp-domain-availability · Install
Installation
Zero-Clone Installation (Recommended)
The MCP Domain Availability Checker supports direct installation without cloning repositories, using uvx for package management.
Configuration
Edit your Claude Desktop configuration file:
**macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%\Claude\claude_desktop_config.json **Linux**: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-domain-availability": {
"command": "uvx",
"args": [
"--python=3.10",
"--from",
"git+https://github.com/imprvhub/mcp-domain-availability",
"mcp-domain-availability"
]
}
}
}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.