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 | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 3 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
- Clone the repository locally
- Install dependencies with uv:
uv install - Configure your editor's MCP settings:
{
"mcpServers": {
"DrissionPageMCP": {
"type": "stdio",
"command": "uv",
"args": ["--directory", "<path_to_repo>", "run", "main.py"]
}
}
}- Optional: Use the MCP inspector for debugging:
mcp dev <path_to_repo>/main.py