MCP Directory

How to add web-eval-agent to Claude Desktop

Autonomous browser agent that evaluates and debugs your web app end-to-end from your IDE. Paste the config into ~/Library/Application Support/Claude/claude_desktop_config.json and restart Claude Desktop.

Last updated June 14, 2026 ยท 1.2kโ˜… ยท stdio ยท apikey ยท official

Claude Desktop config for web-eval-agent

curl -LSf https://operative.sh/install.sh -o install.sh && bash install.sh && rm install.sh
{
  "mcpServers": {
    "web-eval-agent": {
      "command": "uvx",
      "args": [
        "--refresh-package",
        "webEvalAgent",
        "--from",
        "git+https://github.com/Operative-Sh/web-eval-agent.git",
        "webEvalAgent"
      ],
      "env": {
        "OPERATIVE_API_KEY": "<YOUR_KEY>"
      }
    }
  }
}

Requires `uv` (the Python package runner). Install it from https://docs.astral.sh/uv/ if `uvx` is not found.

Setup steps

  1. 1Open Claude Desktop โ†’ Settings โ†’ Developer โ†’ Edit Config (this opens ~/Library/Application Support/Claude/claude_desktop_config.json).
  2. 2Paste the web-eval-agent config below under the top-level "mcpServers" key.
  3. 3Fill in any placeholder secrets (API keys, paths) in the snippet.
  4. 4Save the file, then fully quit and reopen Claude Desktop.
  5. 5Open a chat and confirm web-eval-agent's tools appear under the ๐Ÿ”Œ tools menu.

Before you start

  • A free OPERATIVE_API_KEY from operative.sh/mcp
  • uv (installed via curl -LsSf https://astral.sh/uv/install.sh | sh)
  • Playwright with Chromium (npm install -g chromium playwright && uvx --with playwright playwright install --with-deps)
  • A running web app to evaluate (e.g. http://localhost:3000)

What web-eval-agent can do in Claude Desktop

web_eval_agent

Automated UX evaluator that drives the browser to perform a natural-language task, captures screenshots, console & network logs, and returns a rich UX report. Required args: url (address of the running app, e.g. http://localhost:3000) and task (what to test). Optional: headless_browser (default false; set true to hide the browser window).

setup_browser_state

Opens an interactive (non-headless) browser so you can sign in once; the saved cookies/local-storage are reused by subsequent web_eval_agent runs. Optional arg: url (page to open first, handy to land directly on a login screen).

Security

Requires a free OPERATIVE_API_KEY from operative.sh/mcp, passed via the env block. The agent drives a real browser against your running app and can sign in via setup_browser_state, which persists cookies and local-storage locally for reuse. Note: this project has been discontinued by its maintainers.

web-eval-agent + Claude Desktop FAQ

Where is the Claude Desktop config file?

Claude Desktop reads MCP servers from ~/Library/Application Support/Claude/claude_desktop_config.json. Paste the web-eval-agent config there under the "mcpServers" key and restart the client.

Is web-eval-agent safe to use with Claude Desktop?

Requires a free OPERATIVE_API_KEY from operative.sh/mcp, passed via the env block. The agent drives a real browser against your running app and can sign in via setup_browser_state, which persists cookies and local-storage locally for reuse. Note: this project has been discontinued by its maintainers.

Is this project still maintained?

No. The README states the project has been sunset/discontinued; the maintainers are building something new at withrefresh.com.

How do I get an API key?

Get a free API key at operative.sh/mcp. When you create it you also get an 'Add to Cursor' deeplink and a prefilled Claude Code command with the key included.

Updates aren't showing up in my editor. What do I do?

Run `uv cache clean` and refresh/restart the MCP server in your code editor to pull the latest version.

View repo Full web-eval-agent page