MCP Catalogs
Home

vibetest-use vs filesystem

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

vibetest-use
by browser-use
filesystem
by modelcontextprotocol
Stars★ 793★ 85,748
30d uses
Score4977
Official
Categories
Browser AutomationDeveloper ToolsMonitoring
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit9 mo agothis month

vibetest-use · Summary

MCP server for automated QA testing using Browser-Use agents to find UI bugs and accessibility issues.

filesystem · Summary

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

vibetest-use · Use cases

  • Automated UI bug detection on web applications
  • Link validation across entire websites
  • Accessibility compliance testing

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

vibetest-use · Install

# Install dependencies
uv venv
source .venv/bin/activate
uv pip install -e .

# Install the browser
playwright install chromium --with-deps --no-shell

# For Claude Code
claude mcp add vibetest /full/path/to/vibetest-use/.venv/bin/vibetest-mcp -e GOOGLE_API_KEY="your_api_key"

# For Cursor (add to config)
{
  "mcpServers": {
    "vibetest": {
      "command": "/full/path/to/vibetest-use/.venv/bin/vibetest-mcp",
      "env": {
        "GOOGLE_API_KEY": "your_api_key"
      }
    }
  }
}

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.