MCP Catalogs
Home

filesystem vs DrissionPageMCP

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
DrissionPageMCP
by wxhzhwxhzh
Stars★ 85,748★ 214
30d uses
Score7746
Official
Categories
File SystemDeveloper ToolsProductivity
Browser AutomationWeb ScrapingDeveloper Tools
LanguageTypeScriptPython
Last committhis month3 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

DrissionPageMCP · Summary

A browser automation MCP server using DrissionPage and FastMCP for AI-controlled web operations.

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

DrissionPageMCP · Use cases

  • Automated web testing with AI-based element detection
  • Web scraping with intelligent data extraction
  • AI-controlled website interaction for automation workflows

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.

DrissionPageMCP · Install

Installation

  1. Clone the repository locally
  2. Install dependencies with uv: uv install
  3. Configure your editor's MCP settings:
{
  "mcpServers": {
    "DrissionPageMCP": {
      "type": "stdio",
      "command": "uv",
      "args": ["--directory", "<path_to_repo>", "run", "main.py"]
    }
  }
}
  1. Optional: Use the MCP inspector for debugging: mcp dev <path_to_repo>/main.py
Comparison generated from public README + GitHub signals. Last updated automatically.