everything vs DrissionPageMCP
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | DrissionPageMCP by wxhzhwxhzh | |
|---|---|---|
| Stars | ★ 85,748 | ★ 214 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 3 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
DrissionPageMCP · Summary
A browser automation MCP server using DrissionPage and FastMCP for AI-controlled web operations.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
DrissionPageMCP · Use cases
- Automated web testing with AI-based element detection
- Web scraping with intelligent data extraction
- AI-controlled website interaction for automation workflows
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingDrissionPageMCP · 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