MCP Catalogs
Home

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
Score4277
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit7 mo agothis 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.

Comparison generated from public README + GitHub signals. Last updated automatically.