Server data from the Official MCP Registry
Hosted Playwright API for AI agents. Returns a11y trees instead of screenshots.
Hosted Playwright API for AI agents. Returns a11y trees instead of screenshots.
Valid MCP server (1 strong, 1 medium validity signals). 2 known CVEs in dependencies (0 critical, 2 high severity) Package registry verified. Imported from the Official MCP Registry.
4 files analyzed · 3 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Set these up before or after installing:
Environment variable: ROVE_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-noncelogic-mcp": {
"env": {
"ROVE_API_KEY": "your-rove-api-key-here"
},
"args": [
"-y",
"@roveapi/mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
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).
npx -y @roveapi/mcp
Set your API key via environment variable:
ROVE_API_KEY=rvp_live_... npx -y @roveapi/mcp
claude mcp add --scope user rove -e ROVE_API_KEY=rvp_live_YOUR_KEY -- npx -y @roveapi/mcp
Add to claude_desktop_config.json:
{
"mcpServers": {
"rove": {
"command": "npx",
"args": ["-y", "@roveapi/mcp"],
"env": {
"ROVE_API_KEY": "rvp_live_YOUR_KEY"
}
}
}
}
Add to .cursor/mcp.json:
{
"mcpServers": {
"rove": {
"command": "npx",
"args": ["-y", "@roveapi/mcp"],
"env": {
"ROVE_API_KEY": "rvp_live_YOUR_KEY"
}
}
}
}
| Tool | Description |
|---|---|
navigate | Navigate to a URL. Auto-creates a session. Supports stealth mode and action jitter. |
interact | Click or fill actions in the active session. |
extract_schema | Extract structured data from a URL using a JSON schema. |
screenshot | Take a screenshot (in-session or standalone). |
get_a11y_tree | Get the accessibility tree snapshot — the core differentiator. |
close_session | Close a browser session and release resources. |
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.
| Environment Variable | Default | Description |
|---|---|---|
ROVE_API_KEY | rvp_live_demo | Your Rove API key |
ROVE_API_BASE_URL | https://api.roveapi.com | API endpoint |
Sign up at roveapi.com — 100 free credits on signup, no card required.
MIT
Be the first to review this server!
Added support for streaming responses and improved error handling for rate-limited requests.
Major release: new tool registration API, breaking changes to configuration format. See migration guide.
Added OAuth 2.0 support and improved connection pooling.
Initial stable release.