🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@roveapi/mcp

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@roveapi/mcp

MCP server for Rove browser automation API — use from Claude, Cursor, VS Code

latest
Source
npmnpm
Version
1.9.1
Version published
Maintainers
1
Created
Source

@roveapi/mcp

MCP server for Rove — a hosted Playwright API for AI agents.

Returns accessibility trees instead of screenshots, reducing LLM token consumption by ~77% (26K tokens vs 114K for a typical page).

Quick Start

npx -y @roveapi/mcp

Set your API key via environment variable:

ROVE_API_KEY=rvp_live_... npx -y @roveapi/mcp

Install in Claude Code

claude mcp add --scope user rove -e ROVE_API_KEY=rvp_live_YOUR_KEY -- npx -y @roveapi/mcp

Install in Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "rove": {
      "command": "npx",
      "args": ["-y", "@roveapi/mcp"],
      "env": {
        "ROVE_API_KEY": "rvp_live_YOUR_KEY"
      }
    }
  }
}

Install in Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "rove": {
      "command": "npx",
      "args": ["-y", "@roveapi/mcp"],
      "env": {
        "ROVE_API_KEY": "rvp_live_YOUR_KEY"
      }
    }
  }
}

Tools

ToolDescription
navigateNavigate to a URL. Auto-creates a session. Supports stealth mode and action jitter.
interactClick or fill actions in the active session.
extract_schemaExtract structured data from a URL using a JSON schema.
screenshotTake a screenshot (in-session or standalone).
get_a11y_treeGet the accessibility tree snapshot — the core differentiator.
close_sessionClose a browser session and release resources.

Why Accessibility Trees?

Traditional browser automation returns screenshots that cost ~114K tokens per page. Rove returns structured accessibility trees at ~26K tokens — 77% fewer tokens, faster responses, and better structured data for LLMs to reason over.

Configuration

Environment VariableDefaultDescription
ROVE_API_KEYrvp_live_demoYour Rove API key
ROVE_API_BASE_URLhttps://api.roveapi.comAPI endpoint

Get an API Key

Sign up at roveapi.com — 100 free credits on signup, no card required.

License

MIT

Keywords

mcp

FAQs

Package last updated on 21 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts